function openImg(imageURL){
	x = 120; y = 130;
	windowTitle="Xcited | Drakparaden";
	closeText = "Click to close window!";
	imageWindow=window.open("", Math.round(Math.random()*10000000000), "width=425,height=625,screenX="+ x+",screenY="+y+",top="+y+",left="+x);
	imageWindow.document.open();
	imageWindow.document.write("<HTML><HEAD>");
	imageWindow.document.write("<TITLE>"+windowTitle+"</TITLE>");
	imageWindow.document.write("</HEAD>");
	imageWindow.document.write("<BODY MARGINHEIGHT='0' TOPMARGIN='0' LEFTMARGIN='0' RIGHTMARGIN='0' MARGINWIDTH='0'>");
	imageWindow.document.write("<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 width='100%' height='100%'><TR valign='center'><TD align='center'><A HREF='javascript:top.close();'><IMG name='image' id='image' SRC='"+imageURL+"' ALT='"+closeText+"' BORDER='0' HSPACE=0 VSPACE=0 onload='window.opener.stlk();'></A></TD></TR></TABLE>");
	imageWindow.document.write("</BODY></HTML>");
}
function stlk(){
	var img = imageWindow.document.images['image'];
	imageWindow.resizeTo(img.width+25,img.height+72);
}
