function timer()
{
	var y
	y = snow1.style.posTop + 5
	if(y > document.body.clientHeight*2) y = 0
	snow1.style.posLeft = 100 + Math.sin(y/240) * 90
	snow1.style.posTop = y
	
	y = snow2.style.posTop + 7
	if(y > document.body.clientHeight*2) y = 0
	snow2.style.posLeft = 160 + Math.sin(y/120) * 75
	snow2.style.posTop = y
	
	y = snow3.style.posTop + 8
	if(y > document.body.clientHeight*2) y = 0
	snow3.style.posLeft = 80 + Math.sin(y/350) * 100
	snow3.style.posTop = y
	
	y = snow4.style.posTop + 9
	if(y > document.body.clientHeight*2) y = 0
	snow4.style.posLeft = 230 + Math.sin(y/90) * 120
	snow4.style.posTop = y
	
	y = snow5.style.posTop + 7
	if(y > document.body.clientHeight*2) y = 0
	snow5.style.posLeft = 300 + Math.sin(y/180) * 150
	snow5.style.posTop = y
	
	y = snow6.style.posTop + 10
	if(y > document.body.clientHeight*2) y = 0
	snow6.style.posLeft = 360 + Math.sin(y/350) * 60
	snow6.style.posTop = y
	
	y = snow7.style.posTop + 7
	if(y > document.body.clientHeight*2) y = 0
	snow7.style.posLeft = 500 + Math.sin(y/200) * 150
	snow7.style.posTop = y
	
	y = snow8.style.posTop + 8
	if(y > document.body.clientHeight*3) y = 0
	snow8.style.posLeft = 570 + Math.sin(y/100) * 60
	snow8.style.posTop = y 
	setTimeout("timer()", 120)
}

var onbody=" onload=\"setTimeout('timer()', 50);\"";

function bodycode(snow){
	document.write("<DIV align=center><CENTER>");
	document.write("<img align=bottom border=0 name='snow1' src="+snow+" style='LEFT: 100px; POSITION: absolute; TOP: 50px'>");
	document.write("<img align=bottom border=0 name='snow2' src="+snow+" style='LEFT: 200px; POSITION: absolute; TOP: 150px'>");
	document.write("<img align=bottom border=0 name='snow3' src="+snow+" style='LEFT: 300px; POSITION: absolute; TOP: 100px'>");
	document.write("<img align=bottom border=0 name='snow4' src="+snow+" style='LEFT: 400px; POSITION: absolute; TOP: 250px'>");
	document.write("<img align=bottom border=0 name='snow5' src="+snow+" style='LEFT: 500px; POSITION: absolute; TOP: 200px'>");
	document.write("<img align=bottom border=0 name='snow6' src="+snow+" style='LEFT: 600px; POSITION: absolute; TOP: 350px'>");
	document.write("<img align=bottom border=0 name='snow7' src="+snow+" style='LEFT: 150px; POSITION: absolute; TOP: 300px'>");
	document.write("<img align=bottom border=0 name='snow8' src="+snow+" style='LEFT: 250px; POSITION: absolute; TOP: 400px'>");
	document.write("</CENTER></DIV>");
}