<!-- CALENDAR -->function calendarWin(myUrl, name){	var w=158; var h=133;	var leftpos = (screen.width - w) / 2;	var toppos = (screen.height - h) / 2;	winconfig = 'height='+h+',width='+w+',left='+leftpos+',top='+toppos+',scrollbars=no,resizable=no';	win = window.open(myUrl, name, winconfig);	if (parseInt(navigator.appVersion) >= 4)	win.window.focus();}<!-- SEND -->function sendWin(myUrl, name){	var w=240; var h=263;	var leftpos = (screen.width - w) / 2;	var toppos = (screen.height - h) / 2;	winconfig = 'height='+h+',width='+w+',left='+leftpos+',top='+toppos+',scrollbars=no,resizable=no';	win = window.open(myUrl, name, winconfig);	if (parseInt(navigator.appVersion) >= 4)	win.window.focus();}<!-- LEGAL -->function legalWin(myUrl, name){	var w=256; var h=263;	var leftpos = (screen.width - w) / 2;	var toppos = (screen.height - h) / 2;	winconfig = 'height='+h+',width='+w+',left='+leftpos+',top='+toppos+',scrollbars=yes,resizable=no';	win = window.open(myUrl, name, winconfig);	if (parseInt(navigator.appVersion) >= 4)	win.window.focus();}

if (document.images){	image1on=new Image(); image1on.src="back_on.gif";	image2on=new Image(); image2on.src="next_on.gif";	image1off=new Image(); image1off.src="back_off.gif";	image2off=new Image(); image2off.src="next_off.gif";}function imageOn(image_name){	if (document.images)	{		document[image_name].src = eval(image_name + "on.src");	}}                        function imageOff(image_name){	if (document.images)	{		document[image_name].src = eval(image_name + "off.src");	}}