///////////////////////////////////FUNCTIONS JS//////////////////////////////////////
function fixPNG(myImage,w,h) // correctly handle PNG transparency in Win IE 5.5 or higher.
   {
   	 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
	 strNewHTML += " style=\"" + "width:" + w + "px; height:" + h + "px;" + imgStyle + ";"
	 strNewHTML += "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
	 strNewHTML += "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>" 
	 myImage.outerHTML = strNewHTML
   }
   
function privacy() 
   {
open("util/privacy.htm","privacy","width=450,height=250,status=0,scrollbars=0")
   }
   
   
function admin() 
   {
open("admin/login.asp","admin","width=850,height=700,status=0,scrollbars=0")
   }
