function setImgSize(id){
	var img_width;
	/*
	if(window.innerWidth != null){
		img_width =  window.innerWidth - 8;
	}else{
		img_width = document.body.offsetWidth-30;
	}*/
//	img_width = document.body.offsetWidth;
	
	if (navigator.appName == "Netscape"){
		img_width =	document.body.offsetWidth;	
		document.getElementById(id).width	=	img_width;	
	}else{
//		document.getElementById(id).width = "100";
		if(document.body.offsetWidth != null){
			img_width =  document.body.offsetWidth - 30;
			document.getElementById(id).width	=	img_width;
		}		
	}
}