document.getElementById("tab_").style.width = ((document.documentElement.clientWidth || document.body.clientWidth) < 1000)? "1000px" : "100%";
 var myImage = document.getElementById("imlogo");
 myImage.onLoad = fixPNG();
     function fixPNG() 
{
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    
    }
}


function onMouseHover(el) {
	el.className+=" sfhover";
}
function offMouseHover(el) {
	el.className=el.className.replace(new RegExp(" sfhover\\b"), "");
}


<!--
function setCookie(name, value, expire){
document.cookie = name + "=" + escape(value)   + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()))
}

function getCookie(Name) { 
var search = Name + "="
if (document.cookie.length > 0){
	offset = document.cookie.indexOf(search)
	
	if (offset != -1) {
		offset += search.length
		end = document.cookie.indexOf(";", offset)
	
	if (end == -1)
		end = document.cookie.length
return unescape(document.cookie.substring(offset, end))
	}
}
}

if (!getCookie('access') && !getCookie('id') && !getCookie('login')) {
	document.cookie = 'access=';
	document.cookie = 'login=';
	document.cookie = 'id=';
}

function tsl_Over(el){
 el.className+=" top_sel";
}
function tsl_Out(el){
 el.className=el.className.replace(new RegExp(" top_sel\\b"), "");
}

function Get_Image(el){
 document.getElementById("top_"+el+"_link").src="/i/"+el+"-on.gif";
}

function GetImages(el){
 document.getElementById("top_"+el+"_link").src="/i/"+el+"-off.gif";
}

//-->