if (document.all)
{
// Internet Explorer 4+
document.write('<link rel="stylesheet" href="_css/baseMSIE.css" type="text/css" />');
}
else if (document.layers || document.getElementById)
{
// Navigator 4
document.write('<link rel="stylesheet" href="_css/base.css" type="text/css" />');
}
	function reSize(){
	var height1, height2;
	var all, allContent, content, image, tmp1, menuLeft, left;
	if (document.all){
			height1 = document.body.offsetHeight;
			height2 = document.body.scrollHeight;
			width = document.body.offsetWidth;
			if (height2 > height1){
				height = height2;
			} else {
				height = height1;
			}
			all = height + "px";
			allContent = height - 125 + "px";
			all = height + "px";
			allContent = height - 125 + "px";
			content = height - 171 + "px";
			image = height - 145 + "px";
			tmp1 = height - 128 + "px";
			menuLeft = height - 80 + "px";
			left = height + "px";
		}
		else if (document.layers || document.getElementById){
			height1 = window.innerHeight;
			height2 = document.body.scrollHeight;
			width = window.innerWidth;
			if (height2 > height1){
				height = height2;
			} else {
				height = height1;
			}
			all = height + "px";
			allContent = height - 125 + "px";
			content = height - 171 + "px";
			image = height - 146 + "px";
			tmp1 = height - 128 + "px";
			menuLeft = height - 80 + "px";
			left = height + "px";
		}
		else{
			height = 0;
		}
		document.getElementById("all").style.height = all;
		document.getElementById("allContent").style.height = allContent;
		document.getElementById("content").style.height = content;
		document.getElementById("image").style.height = image;
		document.getElementById("tmp1").style.height = tmp1;
		document.getElementById("menuLeft").style.height = menuLeft;
		document.getElementById("left").style.height = left;
//		alert("width :: " + width + " height :: " + height);
//alert(height1 + " :: " + height2);
	}

