function webZonezMSIEZoneFix()
{
    var zone = document.getElementById("topzone");
	if (zone) {
	    var window_width = zone.offsetWidth;
		var window_height = zone.offsetHeight;	
	} else {
		return;
	}

	var zone = document.getElementById('logozone');
	if (zone) {
		zone.style.left = 0 + 'px';
		zone.style.width = 301 + 'px';
		zone.style.top = 0 + 'px';
		zone.style.height = 100 + 'px';
	}

	var zone = document.getElementById('titlezone');
	if (zone) {
		zone.style.left = 110 + 'px';
		zone.style.width = 914 + 'px';
		zone.style.top = 70 + 'px';
		zone.style.height = 30 + 'px';
	}
	
	var zone = document.getElementById('menuzone');
	if (zone) {		
		zone.style.left = 0 + 'px';
		zone.style.width = 1000 + 'px';
		zone.style.top = 100 + 'px';
		zone.style.height = Math.max(0, window_height - 100) + 'px';
	}

	var zone = document.getElementById('leftimgzone');
	if (zone) {	
		zone.style.left = 0 + 'px';
		zone.style.width = 179 + 'px';
		zone.style.top = 120 + 'px';
		zone.style.height = 446 + 'px';
	}

	var zone = document.getElementById('leftnavzone');
	if (zone) {	
		zone.style.left = 0 + 'px';
		zone.style.width = 125 + 'px';
		zone.style.top = 120 + 'px';
		zone.style.height = Math.max(0, window_height - 120) + 'px';
	}
	
	var zone = document.getElementById('mainzone1');
	if (zone) {	
		zone.style.left = 179 + 'px';
		zone.style.top = 120 + 'px';
		zone.style.width = Math.max(0, window_width - 179) + 'px';
		zone.style.height = Math.max(0, window_height - 120) + 'px';
	}

	var zone = document.getElementById('mainzone2');
	if (zone) {	
		zone.style.left = 0 + 'px';
		zone.style.top = 120 + 'px';
		zone.style.width = window_width + 'px';
		zone.style.height = Math.max(0, window_height - 120) + 'px';
	}

	var zone = document.getElementById('mainzone3');
	if (zone) {	
		zone.style.left = 125 + 'px';
		zone.style.top = 120 + 'px';
		zone.style.width = Math.max(0, window_width - 125) + 'px';
		zone.style.height = Math.max(0, window_height - 120) + 'px';
	}
	
	var zone = document.getElementById('productheadingzone');
	if (zone) {	
		zone.style.left = 125 + 'px';
		zone.style.top = 140 + 'px';
		zone.style.width = Math.max(0, window_width - 250) + 'px';
		zone.style.height = 30 + 'px';
	}
	
	var zone = document.getElementById('viewcartzone');
	if (zone) {	
		zone.style.left = Math.max(0, window_width - 125) + 'px';
		zone.style.top = 140 + 'px';
		zone.style.width = 125 + 'px';
		zone.style.height = 30 + 'px';
	}
	
	var zone = document.getElementById('mainzone4');
	if (zone) {	
		zone.style.left = 125 + 'px';
		zone.style.top = 170 + 'px';
		zone.style.width = Math.max(0, window_width - 125) + 'px';
		zone.style.height = Math.max(0, window_height - 150) + 'px';
	}
}

function webZonezCorrectPNG() 
{
   var arVersion = navigator.appVersion.split("MSIE")
   var version = parseFloat(arVersion[1])
   if ((version >= 5.5) && (document.body.filters)) 
   {
      for(var i=0; i<document.images.length; i++)
      {
         var img = document.images[i]
         var imgName = img.src.toUpperCase()
         if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
         {
            var imgID = (img.id) ? "id='" + img.id + "' " : ""
            var imgClass = (img.className) ? "class='" + img.className + "' " : ""
            var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
            var imgStyle = "display:inline-block;" + img.style.cssText 
            if (img.align == "left") imgStyle = "float:left;" + imgStyle
            if (img.align == "right") imgStyle = "float:right;" + imgStyle
            if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
            var strNewHTML = "<span " + imgID + imgClass + imgTitle
            + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
            + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
            + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
            img.outerHTML = strNewHTML
            i = i-1
         }
      }
   }    
}

