<!--



function pppopup(sURL,iWidth,iHeight)
 {
 	windowprops = "left="+(screen.width - (iWidth)) / 2+",top="+(screen.height - (iHeight)) / 2+",width=" + (iWidth) + ",height=" + (iHeight);
	text = "<html><head><title>Image Viewer</title></head><body bgcolor='white' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'";
	text += "><center><img src='" + sURL + "'>";
	text += "</center></body></html>";
	preview = window.open("", "preview", windowprops);
	preview.document.open();
	preview.document.write(text);
	preview.focus()
	preview.document.close();
	//window.open(sURL, 'SmarttechImage', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+iWidth+',height='+iHeight+',left = 262,top = 134,');
 }

function ppflash(site){
	var mainWin = window.open(site,'mainWin','width=650,height=400,scrollbars=0,menubar=0,status=0,toolbar=0,location=0,resizable=0,screenX=0,screenY=0,left=50,top=50');
	mainWin.focus();
}
-->