//<!--
var defaultPopWide = 500;
var defaultPopHigh = 400;
var defaultPopTitle = "Spring Fashion Wish List"; //do not use (" or ') in titles

function popImageWin( sImage , iWide , iHigh , sTitle ){
	if(sImage == null){ 
		alert("no image specified.");
	} else {
		imgTitle = sTitle == null ? "&title=" + escape(defaultPopTitle)  : "&title=" + escape(sTitle) ;
		imgQuery = "?image=" + sImage + imgTitle;
		
		winWide = iWide == null ? defaultPopWide  : iWide ;
		winHigh = iWide == null ? defaultPopHigh  : iHigh ;
		
		imgWindow = window.open("show_image.jhtml" + imgQuery, "popWindow" , "width="+winWide.toString()+",height="+winHigh.toString()+",status=0,toolbar=0,scrollbars=0,menubar=0,screenX=0,screenY=0");
	}
}
/*

		function openWin(page) {
  myWin= open(page, "popupWindow",
"width=430,height=350,status=no,toolbar=no,scrollbars=no,menubar=no,screenX=0,screenY=0,");
}*/
//-->