

function NewWindow(mypage,myname,w,h,scroll){ 
	var win = null; 
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; 
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0; 
	
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
	
	win = window.open(mypage,myname,settings) 
	
	if(win.window.focus){win.window.focus();} 
} 


function popUp(strURL,strType,strHeight,strWidth,winName) {
	var strOptions="";
	if (strType=="console") strOptions="height="+strHeight+",width="+strWidth;
	if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
	if (strType=="elastic") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
	window.open(strURL, winName, strOptions);
}
function changeimageinfo(id,detailpath,popuppath,popuplinkid) {
    try
    {
	mpopuppath=popuppath;
	
	var img = document.getElementById(id);
	
	img.src = detailpath;
	
	//var popuplink = document.getElementById(popuplinkid);	

	
	if(detailpath==popuppath)
		{
			
		//popuplink.style.visibility ='hidden';
		img.onclick=changeLink;
		}
	else{
		//popuplink.style.visibility ='visible';
		img.onclick = changeLink;
		//popuplink.onclick = changeLink;
		}
    }
    catch(ex){}
}


 function changeLink()
 {
	link = window.open('http://www.nevershaveagain.com/DisplayLarge.aspx?path=' + mpopuppath,'image','height=500,width=600,scrollbars=yes,resizable=yes,toolbars=yes');
    
    }
