
var mainWin = null,path='';


function popWork( location , name , w , h ) {


	var resized = false;		
	var windowHeight = h;
	var windowWidth = w;
	
	if ( windowHeight > screen.height * .75 ) {
		windowHeight = screen.height * .75;
		windowWidth = Number( windowWidth ) + 30;
		resized = true;
	}
	
	leftPos=(screen.width)?(screen.width-windowWidth)/2:0;
	topPos=(screen.height)?(screen.height-windowHeight)/2:0;			
	
	//var href = "http://clients.jonreiling.com/cd/work.php?image="+location+"&imagename="+name+"&imageheight="+h+"&imagewidth="+w;
	if ( resized )
		work = window.open(location,'main','left='+leftPos+',top='+topPos+',width='+windowWidth+',height='+windowHeight+',resize=no,scrollbars=yes,toolbar=no');
	else
		work = window.open(location,'main','left='+leftPos+',top='+topPos+',width='+windowWidth+',height='+windowHeight+',resize=no,scrollbars=no,toolbar=no');

	
	work.focus();
	
	}	

