<!--
function MM_openBrWindow(theURL,descrip) { //v1.2 
// Script to open an image in a popup window. Centres image & window, writes in description and adds "Close" link..

// if window is open then close it.. 
if ( pwin != null ) { 
 pwin.close() ; 
 pwin=null ; 
 }  
// Make new image and obtain width & height.. 

var w=400 ; 
var h=300 ; 
// Add extra width & height for text etc. 
var w1=w+20 ; 
var h1=h+65 ; 
// Work out where top & left of new window will be.. 
var l=(screen.availwidth - (w1)) / 2 ; 
var t=(screen.availheight - (h1)) / 2 ; 

// Set window features.. 
var features='scrollbars=no,resizable=no,left='+parseInt(l)+',top='+parseInt(t)+',width=420,height=350' ; 
// Open window.. 
pwin=window.open('','popwin',features); 
// Write document contents.. 
pwin.document.open() ; 
pwin.document.write('<HTML><HEAD><TITLE>'+descrip+'</TITLE></HEAD><BODY BGCOLOR="#D8EDDF" TEXT="#005b30" LINK="#005b30" VLINK="#005b30" ALINK="#005b30"><CENTER><FONT SIZE="5"><B><U>'+descrip+'</U></B></FONT><IMG SRC="'+theURL+'" ALT = "Loading Image..."><BR><A Href="#" onclick="self.close();"><B>Close</B></a></CENTER</BODY></HTML>'); 
pwin.document.close() ; 

} 
//--> 
