var newWindow = '';

function load_pict(inImg, inWidth, inHeight){
			
	var setWidth = '400';
	var setHeight = '580';		
	if(inWidth != ''){ setWidth = inWidth; }
	if(inHeight != ''){ setHeight = inHeight; }
	
	var use_opts = "width="+setWidth+", height="+setHeight+", noscroll, toolbars=no";
	var full_link = "/v2/_popups/pop_pict.php?inPict="+inImg;
		
	if (!newWindow.closed && newWindow.location) {
		newWindow.close();
	}
	
	newWindow = window.open(full_link, 'popup', use_opts)
		
	if (window.focus) {
		newWindow.focus()
	}
}