function GetRandomImage(){var Imagecouter = Math.random()Imagecouter = Imagecouter*10;if(Imagecouter>=7)	{	document.write("<IMG src=image/photo1.gif width=224 height=132>");	}else	{	if(Imagecouter>=5)		{		document.write("<IMG src=image/photo2.gif width=224 height=132>");		}	else		{		if(Imagecouter>=3)			{			document.write("<IMG src=image/photo3.gif width=224 height=132>");			}		else			{			document.write("<IMG src=image/photo4.gif width=224 height=132>");			}		}	}}
