
	function popupWin(thingy)
	{
			if (thingy != null)
			{
				thingy = thingy + ".html";
				window.open(thingy,'popupwin','toolbar=no,width=600,height=400,status=no,menubar=no,scrollbars=yes');
			}
			
	}

//-->
function submitnow(theForm){
theForm.submit();
}

function validate(theForm)
{
	var err;
	var err1;
	var collection;
	b= new Array();
	
	
	i=0;
	err = false;

	for(x = 0; x < theForm.length; x++)
	{ 
	var	s=theForm.elements[x].name;
		if ((theForm.elements[i].name == 'name') || (theForm.elements[i].name == 'phone1')|| (theForm.elements[i].name == 'email')|| (theForm.elements[i].name == 'phone1')) 
		{
			if( theForm.elements[x].value == "" )
			{
				err = true;
				err1=1;
			}
		}
		
		
		
		i++;
		
	}
	
	if (err1==1)
		{
			alert("You must fill all the fields marked '*'");
		}
		
	if (!err)
		{
			return true;
		}
}
 
