
  function outchromeless(theURL, wname, W, H, windowTIT){
	var windowREALtit = windowTIT;
	var bCenter =	 true;
	var swapW = W;
	var windowW =	W+2;
	var windowH =	H+2;
	var windowX =	-1;
	var windowY =	-1;
	if(bCenter){windowX = Math.ceil(windowW/ 2 ); windowY  = Math.ceil(windowH/ 2 );
	} else	{windowX = null; windowY = null;}

	UPpathname =  'jpg_seasCR80/' +theURL;
	dim = 	" width="+W+" height="+H;
	s = 	",width="+windowW+",height="+windowH;

var newWinhtml ='<HTML>'
+ '\n'      +'<HEAD>'
+ '\n'      +'<TITLE>' + '&nbsp; ' + windowREALtit + '</TITLE>'
+ '\n'      +'</HEAD>'
+ '\n'      +'<BODY TOPMARGIN="0" LEFTMARGIN="0" bgcolor=#ffffff>'
+ '\n'      +'<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="1" bgcolor=#808040>'
+ '\n'      +'<TR> '
+ '\n'      +'<TD ALIGN="center" VALIGN="middle"><IMG SRC='+UPpathname+dim+' ></TD>'
+ '\n'      +'</TR></TABLE></BODY>'
+ '\n'      +'</HTML>'	

	splashWin = window.open("",wname,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0"+s, true);
	      splashWin.document.open();
	      splashWin.document.write(newWinhtml);
	      splashWin.document.close();
	splashWin.moveTo( Math.ceil(windowX) , Math.ceil(windowY) );
	splashWin.focus();
} 
