 <!--
function loadup(){
	multiplier = (screen.width * 0.30) / 300; 
	for(i=0;i<document.images.length;i++) 
		{

		imge=document.images[i];		
		if (imge.complete==false) 
		{
			window.status="Please wait while remaining images are downloaded...."
			Image1 = new Image();
			Image1.src = imge.src
			imge.src = Image1.src
		}

			imge.width*=multiplier; 
			imge.height*=multiplier; 
		}
	window.status=" "
}
//--> 
