

var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

function fixPNG(myImage)
{
    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    
    }
}

function CallPrint(strid)
{
	var prtContent = document.getElementById(strid);
	 var strOldOne = prtContent.innerHTML;
	 var WinPrint = window.open('','','letf=0,top=0,width=450px,height=550px,toolbar=0,scrollbars=0,status=0');
	 WinPrint.document.writeln("<html><head><title></title><LINK href='Stylesheet/deltion.css' type='text/css' rel='stylesheet'></head><body style='margin:10px;'>");
     WinPrint.document.writeln("<span class='content_part-h1'>Deltion</span>");
	 WinPrint.document.write(prtContent.innerHTML);
	 WinPrint.document.writeln("</body></html>");
	 WinPrint.document.close();
	 WinPrint.focus();
	 WinPrint.print();
	 WinPrint.close();
	 prtContent.innerHTML=strOldOne;
}

function goURL(url)
{
	window.location.href = url;
}

