var bigpicWin=null;
function showbigimage(url,picwidth,picheight,description)
{if(!bigpicWin||bigpicWin.closed)
 {usrwidth=screen.width;usrheight=screen.height;
  winwidth=picwidth;winheight=picheight;
  var X=(usrwidth-winwidth)/2;
  var Y=(usrheight-winheight)/2;
  properties="toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width="+winwidth+",height="+winheight+",";
  checkie=navigator.appName.indexOf("icrosoft");
    if(checkie==-1){properties=properties+"screenX="+X+",screenY="+Y;}
    else{properties=properties+"left="+X+",top="+Y;}
 bigpicWin=window.open('','bigpicWin',properties);
 bigpicWin.document.open();
 bigpicWin.document.write('<html><head>');
 bigpicWin.document.write('<title>'+description+'</title>');
 bigpicWin.document.write('');
 bigpicWin.document.write('<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" bottommargin="0">');
 bigpicWin.document.write('<a href="JavaScript:self.close()"><img src="'+url+'" border="0"/></a>');
 bigpicWin.document.write('');
 bigpicWin.document.write('');
 bigpicWin.document.close()
 bigpicWin.focus();}
else{bigpicWin.focus();}
}
