function popWin(page, target, x, y, nobars)
{
	nwin = window.open(page, target,
		"scrollbars="
		+ (nobars ? "no," : "yes,")
		+ "top=0,left=0,resizable=yes,width=" + x + ",height=" + y);
	nwin.focus();
}

function popCreate(item)
{
	nwin = window.open('null.html', 'zoomItem', 'scrollbars=no,top=0,left=0,resizable=yes,width=100,height=100');
	nwin.document.write('<html>'
		+ '<head>'
		+ '<title>Universal People</title>'
		+ '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-7">'
		+ '<link rel="stylesheet" href="styles.css" type="text/css">'
		+ '</head>'
		
		+ '<body text="#000000" background="images/logo_bg.jpg">' 
		+ '<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%">'
		+ ' <tr>'
		+ '	<td align="center" valign="middle">'
		+ '	  <table border="0" cellspacing="0" cellpadding="15">'
		+ '		<tr>'
		+ '		  <td bgcolor="#FFFFFF" class="brdThickBox" bordercolor="#480000"><img name="pic" src="' + item + '" onLoad="self.resizeTo(width+100, height+100);"></td>'
		+ '		</tr>'
		+ '	  </table>'
		+ '	</td>'
		+ '  </tr>'
		+ '</table>'
		+ '</body>'
		+ '</html>'  );
	nwin.focus();
}
