/**
*/
browser_version = parseInt(navigator.appVersion);
browser_type = navigator.appName;
if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4)) {
document.write("<style type='text/css'>");
document.write("#centercontent,#leftcontent,#rightcontent{height:100%;}");
document.write("#container{height:500px;}");
document.write("</style>");
} 

function enlarge(image_loc, img)
{
HTML = "<html><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+75)'><div style='text-align:center;font-size:9pt;font-family:arial;'><a href='javascript:window.close();'>Close Window</a></div></html>";
popupImage = window.open('','_blank','toolbar=no,scrollbars=no'); 
popupImage.document.open(); 
popupImage.document.write(HTML); 
popupImage.document.close(); 
}

// -->

