function fNewWindows(ImageName,type) {    
  
  vHTML="<html><head><title>DigitalRedness Galeries</title>";
  vHTML=vHTML+"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"></head>";
  vHTML=vHTML+"<body bgcolor=\"#000000\">";  
  vHTML=vHTML+"<table border=\"0\"><tr><td width=\"800\" height=\"600\" valign=\"middle\">";    
  vHTML=vHTML+"<div align=\"center\">";  
  vHTML=vHTML+"<img src=\""+"images_Fantastique/HauteDef/"+ImageName+"\""+">";
  vHTML=vHTML+"</div>";
  vHTML=vHTML+"</td></tr></table>";  
  vHTML=vHTML+"</body>";
  vHTML=vHTML+"</html>";
  
  // Get Info from browser
  iBrwName = navigator.appName;
  iBrwCodeName = navigator.appCodeName;
  iVer = navigator.appVersion;

  // Check for Safari Browser type
  idSafari=iVer.indexOf("Safari");
  if ((idSafari != -1) && (iBrwName == "Netscape")) {
    mypopup=window.open("","DigitalRedness Galerie","location=no,directories=no,status=yes,menubar=no,resizable=no,top=0,left=0,width=800,height=622");
	} else {
    mypopup=window.open('about:blank','sTitle','location=no,directories=no,status=yes,menubar=no,resizable=no,top=0,left=0,width=800,height=622');
  }
  mypopup.document.write(vHTML);
  mypopup.document.close();
}
