function start(page)
{
	OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=640");
}

function popup(page)
{
	timeout =60;
	windowprops = "left=50,top=0,width=550,height=520,scrollbars=yes,resizable=yes";
	
	text = "<html><head><title>Atom-International.com</title></head><body bgcolor='white'";
	text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";
	text += "><center><img src='" + page + "'>";
	text +="<br><font face='verdana' size='2'><b>Window closes after " + timeout + " seconds.</font>";
	text += "</center></body></html>";
	
	preview = this.open("", "preview", windowprops);
	preview.document.open();
	preview.document.write(text);
	preview.document.close();
}

function openwindow(id)
{
	window.open ('proshow.asp?id='+id,'prowin', 'height=600, width=800, top=0, left=0, toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no') 
}
