
function imagePopup(url){

if(typeof(url)!="object"){
window.golarge = window.open("","","top=10,left=10,width=30,height=30,scrollbars=no,resizable=yes");
window.golarge.document.open();
window.golarge.document.write('<html>');
window.golarge.document.write('<head>');
window.golarge.document.write('<title></title>');
window.golarge.document.write('</head>');
window.golarge.document.write('<link rel="stylesheet" type="text/css" href="../styles/general-text.css" />');
window.golarge.document.write('<body topmargin="10" leftmargin="10" marginwidth="10" marginheight="10">\n');
window.golarge.document.write('<table height="100%" valign="top"><tr><td align="center" valign="top"><a onClick=""><img border="0" src="'+url+'" onLoad="opener.imagePopup(this);"></a><br><img src="images/null.gif" width="1" height="5" alt=""></td></tr></table>\n');
window.golarge.document.write('</body>\n');
window.golarge.document.write('</html>\n');
window.golarge.document.close();
}
else{
if(document.layers)
window.golarge.resizeTo(url.width,url.height);
else
window.golarge.resizeTo(url.width+40,url.height+170);
}
}

