  if(navigator.appVersion.indexOf("Safari") == -1)
{
	var ie55up = true
}
function fixPNG(myImage) // correctly handle PNG transparency in Win IE 5.5 or higher.
   {
    if (window.ie55up)
	 {
	// alert(myImage.outerHTML);
	 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:" + myImage.width + "px; height:" + myImage.height + "px;" + imgStyle + ";"
	 strNewHTML += "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
	 strNewHTML += "(src=\'" + myImage.src + "\', sizingMethod='crop');\"><img src=/img/x.gif width="+myImage.width+" height="+myImage.height+" border=0></span>" 
	 myImage.outerHTML = strNewHTML
//	alert(strNewHTML);
	 }
   }
   
   
function fixPNG_link(myImage) // correctly handle PNG transparency in Win IE 5.5 or higher.
   {
    if (window.ie55up)
	 {
	// alert(myImage.outerHTML);
	 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:" + myImage.width + "px; height:" + myImage.height + "px;" + imgStyle + ";  cursor:pointer;"
	 strNewHTML += "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader "
	 strNewHTML += "(src=\'" + myImage.src + "\', sizingMethod='crop');\"><img src=/img/x.gif width="+myImage.width+" height="+myImage.height+" border=0></span>" 
	 myImage.outerHTML = strNewHTML
//	alert(strNewHTML);
	 }
   }   
   
