var myWindow;

function openCenteredWindow(url, name) {
    var width  = 500;
    var height = 400;
    var left   = parseInt((screen.availWidth/2) - (width/2));
    var top    = parseInt((screen.availHeight/2) - (height/2) - 50);
	
    var windowFeatures = "width=" + width + ",height=" + height + ",menubar=no,location=no,resizable=no,scrollbars=no,status=no,left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top;

    myWindow = window.open(url, "subWind", windowFeatures);
	
	myWindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
	myWindow.document.write('<html><head><title>' + name);
  	myWindow.document.write('</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  	myWindow.document.write('<img src="' + url + '" width="500" height="400" border="0" alt="" />');
  	myWindow.document.write('</body></html>');
  
	myWindow.document.close();
}







function openCenteredWindow1(url, name) {
    var width  = 500;
    var height = 600;
    var left   = parseInt((screen.availWidth/2) - (width/2));
    var top    = parseInt((screen.availHeight/2) - (height/2) - 50);
	
    var windowFeatures = "width=" + width + ",height=" + height + ",menubar=no,location=no,resizable=no,scrollbars=no,status=no,left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top;

    myWindow = window.open(url, "subWind", windowFeatures);
	
	myWindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
	myWindow.document.write('<html><head><title>' + name);
  	myWindow.document.write('</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  	myWindow.document.write('<img src="' + url + '" width="500" height="600" border="0" alt="" />');
  	myWindow.document.write('</body></html>');
  
	myWindow.document.close();
}








function openMapWindow(url, name) {
    var width  = 852;
    var height = 475;
    var left   = parseInt((screen.availWidth/2) - (width/2));
    var top    = parseInt((screen.availHeight/2) - (height/2) - 50);
	
    var windowFeatures = "width=" + width + ",height=" + height + ",menubar=no,location=no,resizable=no,scrollbars=no,status=no,left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top;

    myWindow = window.open(url, "subWind", windowFeatures);
	
	myWindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
	myWindow.document.write('<html><head><title>' + name);
  	myWindow.document.write('</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  	myWindow.document.write('<img src="' + url + '" width="852" height="475" border="0" alt="" />');
  	myWindow.document.write('</body></html>');
  
	myWindow.document.close();
}
