// JScript source code
		var yshift
		yshift=19
		if (navigator.appName == "Netscape")
		{
			height=window.innerHeight;
			if(height>475)
			{
				height=height-475;
				//alert(window.innerHeight +" " +height)
				fctr=height/yshift;
				//alert(fctr)
				for(p=0;p<fctr;p++)
				{
					document.write("<br>");
				}
			}
		}
		else
		{

			height=document.body.offsetHeight;
			if(height>475)
			{
				height=height-475;
				//alert(document.body.offsetHeight +" " +height)
				fctr=height/yshift;
				//alert(fctr)
				for(p=0;p<fctr;p++)
				{
					document.write("<br>");
				}
			}
		}
