var popupWin;
function openPop(in_uri) {
	var theWidth=700;
	var theHeight=500;
	var theTop=(screen.height/2)-(theHeight/2);
	var theLeft=(screen.width/2)-(theWidth/2);
	var features='height=' + theHeight + ',width=' + theWidth + ',top='+theTop+',left='+theLeft+",toolbar=0,Location=0,Directories=0,Status=0,menubar=0,Scrollbars=1,Resizable=1";
	popupWin = window.open(in_uri,'ss',features);
}
function openImagePop(in_uri, inWidth, inHeight) {
	var theWidth=inWidth + 20;
	var theHeight=inHeight + 20;
	var theTop=((screen.height/2)-(theHeight/2))/2;
	var theLeft=(screen.width/2)-(theWidth/2);
	var features='height=' + theHeight + ',width=' + theWidth + ',top='+theTop+',left='+theLeft+",toolbar=0,Location=0,Directories=0,Status=0,menubar=0,Scrollbars=0,Resizable=1";
	popupWin = window.open(in_uri,'mt',features);
}

