// :: a Z b e s Z t ::

function openWindow(targetURL)
{
    window.open(targetURL, "", "top=50,left=50,width=675,height=500,toolbar=0,location=0,resizable=1,status=0,menubar=0,scrollbars=1,fullscreen=0");
}
	
function showpic(pic, w, h)
{
    popup = window.open('','','toolbar=no,location=no,directories=no,menubar=no,resizable=no,status=no,scrollbars=1,width='+w+',height='+h);
    popup.document.write('<html><body bgcolor="#324C6E"><div style="position: absolute; left: 0px; top: 0px; right:0p; bottom:0px;"><table cellpadding=0 cellspacing=0 border=0><tr valign=middle><td align=center>');
    popup.document.write('<img src="images/'+pic+'" border=0 onclick=self.close()></tr></td></table></div></body></html>');
    popup.document.close();
}

function showImage(url, width, height)
{
    popup = window.open('', '', 'toolbar=no,location=no,directories=no,menubar=no,resizable=no,status=no,scrollbars=1,width=' + width + ',height=' + height);
    popup.document.write('<html><body bgcolor="#324C6E"><div style="position: absolute; left: 0px; top: 0px; right:0p; bottom:0px;"><table cellpadding=0 cellspacing=0 border=0><tr valign=middle><td align=center>');
    popup.document.write('<img src="' + url + '" border=0 onclick="self.close();"></tr></td></table></div></body></html>');
    popup.document.close();
}