<!--

 function win4img(imgsrc,wdth,hght) { 
 features = 
    'toolbar=no,location=no,directories=no,status=no,menubar=no,' +
    'scrollbars=no,resizable=no,width=' + wdth + ',height=' + hght 
 dlg = window.open ("","XXX",features)
 dlg.document.write ("<HTML><HEAD></HEAD>")
 dlg.document.write ("<BODY topmargin='0' leftmargin='0' bgColor='white' text='black' ")
 dlg.document.write ("background=" + imgsrc + " >")
 dlg.document.write ("</BODY></HTML>")
 }
 
 function openInfo(infopage){
 	config = 'toolbar=no,location=no,directories=no,status=no,menubar=no';
 	config += ',top=15,left=228,width=400,height=400';
 	config += ',scrollbars=yes,resizable=yes';
 	window.open(infopage, 'Info', config);
}


//-->


