function RollOver(obj)
	{
	if (window.navigator.appName == 'Netscape')
		window.document.getElementById(obj).style.cursor = 'pointer';
	else
		window.document.getElementById(obj).style.cursor = 'hand';
	}

function RollOut(obj)
	{
	window.document.getElementById(obj).style.cursor = 'default';
	}

function ContactUs()
	{
	window.open('mailform.htm','_blank','height=450,width=420,top=100,left=100,status=no,toolbar=no,menubar=no,location=no');
	}

function BkImage()
	{
	lngScreenWidth=0;

	if (window.navigator.appName == 'Netscape')
		lngScreenWidth=window.innerWidth;
	else
		lngScreenWidth=document.body.clientWidth;
	document.write("<img border='0' name='imgBkImage' src='images/body01.gif' style='position: absolute; z-index:0; left: " + ((lngScreenWidth/2)-(438/2)-19) + "; top: 110' width='438' height='420'>");

	}

function MoveBkImage()
	{
	lngScreenWidth=0;

	if (window.navigator.appName == 'Netscape')
		{
		lngScreenWidth=window.innerWidth;
		document.imgBkImage.Left=((lngScreenWidth/2)-(438/2)-19);
		}
	else
		{
		lngScreenWidth=document.body.clientWidth;
		document.imgBkImage.style.pixelLeft=((lngScreenWidth/2)-(438/2)-19);
		}

	}

