function NewWindow(url,name,w,h) {

		var l = (screen.width - w) / 2;
		var t = (screen.height - h) / 2;
		window.open(url,name,'width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=yes,scrollbars=yes,toolbar=no,menubar=no,status=no,location=no,screenX=10,screenY=10;');

	}
	
	
	function NewWindow2(url,name,w,h) {

		
		var l = (screen.width - w) / 2;
		var t = (screen.height - h) / 2;
		var elvis = window.open('/files/print.htm',name,'width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=no,scrollbars=no,toolbar=no,menubar=no,status=no,location=no,screenX=0,screenY=0;');

		

	}
	
	
	
	
	
function fixPNG(myImage) {    
 var arVersion = navigator.appVersion.split("MSIE");    

 var version = parseFloat(arVersion[1]);      

if ((version >= 5.5) && (version < 7) && (document.body.filters))     

{        


 var imgID = (myImage.id) ? "id='" + myImage.id + "' " : "";        


 var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : "";        

 var imgTitle = (myImage.title) ? "title='" + myImage.title  + "' " : "title='" + myImage.alt + "' ";        

 var imgStyle = "display:inline-block;" + myImage.style.cssText;         

var strNewHTML = "<span " + imgID + imgClass + imgTitle            

 + " style=\"" + "width:" + myImage.width            


 + "px; height:" + myImage.height           

  + "px;" + imgStyle + ";"           


  + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"            


 + "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>";         

myImage.outerHTML = strNewHTML;     } }  	