<!--
/*
====
Copyright (c) 2005, World View Design. All rights reserved.
Protected by copyright and license restricting use. This software
is licensed, not sold, for use only under expressed written consent
from World View Design. This software is protected by United States
copyright laws and international treaties. Unauthorized reproductions or
distributions are subject to civil and criminal penalties and are strictly prohibited.
====
*/

function checkiado(me)
	{
//	alert("HELLO");
//	if(me.os0.value == "Choose Design Style")
//		{
//		alert("Please choose your Design Style from the drop-down menu.");
//		me.os0.focus();
//		return false;
//		}
//	else
//		{	
		if(me.agree.checked)
			{
			return true;
			}
		else
			{
			alert("Please check the checkbox and agree to the Service Agreement.");
			me.agree.focus();
			return false;
			}
		}
//	}
//-->