function Init(id){if (top!=self) top.selmenu(id)}

var p = null;

function popup(w,h,filename) {
	var l=10, t=10;
	if (w<1) w=480;
	if (h<1) h=640;
	if (screen.width) {
		l=(screen.width)?(screen.width-w)/2:0;
		t=(screen.height)?(screen.height-h)/2:0;
	}
	var p=window.open("", "zoom", "toolbar=no,scrollbars=auto,location=no,directories=no,status=no,menubar=no,resizable=no,width="+w+",height="+h+",left="+l+",top="+t+",screenX="+l+",screenY="+t);
	if (p) {
		p.document.open('text/html');
		p.document.writeln('<html><head><title>FROHN</title>');
		p.document.writeln('<meta http-equiv="imagetoolbar" content="no">');
		p.document.writeln('<style type="text/css">');
		p.document.writeln('body { margin:0; background-color:#C1C2C4 }');
		p.document.writeln('</style>');
		p.document.writeln('</head><body>');
		p.document.writeln('<table cellpadding="0" cellspacing="0" border="0" height="100%" width="100%"><tr><td valign="middle" align="center">');
		p.document.writeln('<a href="#" onClick="self.close()"><img src="'+filename+'" alt="" border="0"></a>');
		p.document.writeln('</td></tr></table>');
		p.document.writeln('</body></html>')
		p.document.close();
		p.opener=self;
		p.focus();
	}
}
