
function onResizeWindow(){
	var id = "photo-of-the-day";
	var table_width = "800";
	var Id = document.getElementById(id);
	var width = document.body.clientWidth;
	var left = 0;
	var top = 330;
	if(Id){
		//window.alert(document.body.scrollWidth);
		if(width > table_width){
			left = 370 + parseInt(width / 2 - parseInt(table_width)/2);
			Id.x = left + (!IsIE)?"":"px";
			Id.style.left = left+"px";
			Id.y = top + (!IsIE)?"":"px";
			Id.style.top = top+"px";
		}else{
			//window.alert(document.body.scrollWidth);
			left = 370;
			Id.x = left + (!IsIE)?"":"px";
			Id.style.left = left+"px";			
			Id.y = top + (!IsIE)?"":"px";
			Id.style.top = top+"px";
		}
	}
	return;
}