
<!-- Hide from old browsers

//********************************************************************************
//	imageWindow - Displays image in new window
//********************************************************************************
function imagepopup(image_source, title, width, height) {

if(!width && !height){
width = 680;
height = 510;
}
else
{
width = width + 40;
height = height + 30;

}

 
winstats="toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width="+width+",height="+height+",left=10,top=10";
page="/popup/popup.php?title=" + title + "&image_source=" + image_source;
image_popup=window.open(page,"",winstats);
   
image_popup.focus();

}
// end hiding -->
