<!--
 function goNewWin(myPage,myName,features,origLeft,origTop) {
	
//expected format('filename.html','popup','resizable=no,width=382,height=350,scrollbars=yes',
//toolbar=no,directories=no,status=no,menubar=no,100,100);  ** you can pick any feature(s).
	
	TheNewWin = window.open(myPage,myName,features);

	TheNewWin.moveTo(origLeft,origTop);
	TheNewWin.focus();
}
//-->
