// JavaScript Document
function openwinW(imgid, ws, hs) {
	infoWin = open("", "infoWindoww","width="+ws+", height="+hs+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no");

	// open document for further output
	infoWin.document.open();

	// create document
	infoWin.document.write("<head><title>niteguide.at</title><style type='text/css'> body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; }</style></head><body>");
	infoWin.document.write("<img src='/media/"+imgid+"'>");
	infoWin.document.write("</body></html>");

	// close the document - (not the window!) & set Focus
	infoWin.document.close();
	infoWin.focus();
}