function mypopup(pic, w, h) 
{   
	ws = w+10;
	hs = h+10;
	tops = (screen.height-hs)/2;
	lefts = (screen.width-ws)/2;
	win=window.open("","fenster","height="+hs+",width="+ws+"     	,scrollbar=yes,toolbar=yes,resizable=yes, top="+tops+",left="+lefts+"");

	win.document.open();
	win.document.write("<html><head><meta http-equiv='imagetoolbar' content='no'><title>• Twilight-Immortal • </title></meta></head><body bgcolor='#EAE0D2' bottommargin='0' rightmargin='0' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='center' valign='middle'><a href='javascript:self.close();'><img src='" + pic + " 'border='0' alt='Click to close the window'/></a></td></tr></table></body></html>");
    win.document.close();
    win.focus();
}
	

