
/*
 h.module.js
 18.6.2004
*/

function accept_system_colors(){
 if (document.all) {
  var vers=navigator.appVersion;
  if (vers.substring(0,1)=="4") return 1; else return 0;
 }
}


function SS_open_picture(url,width,height,text){
 if (width>screen.width) width=screen.width-14;
 if (height>screen.height) height=screen.height-60;
 var SS_mywin = window.open('','myimage','width=' + width + ',height=' + height);
 SS_mywin.document.writeln("<html><head><title>Picture " + width + " x " + height +"</title></head><body leftmargin=0 topmargin=0><a href=\"javascript:self.close()\"><img src=\"" + url + "\" border=\"0\" alt=\"Click to close\"></a><br>" + text + "</body></html>");
 SS_mywin.moveTo((screen.width-10-width)/2,(screen.height-50-height)/2);
}
