function goDiv(iCmd)
{
	if (iCmd==0)
	{
		document.getElementById("details").style.display = "";
		document.getElementById("pricing").style.display = "none";
	}
	else
	{
		document.getElementById("pricing").style.display = "";
		document.getElementById("details").style.display = "none";
	}


}


/*function changeRandom() { 
	someArray = new Array("child","dog")
    someArrayNumber = Math.floor(someArray.length*Math.random()); 
	document.getElementById(someArray[someArrayNumber]).style.display = ""; 
	document.getElementById("main").style.display = "";
} */

function validateForm()
{
 if (document.frmContact.txt_name.value == '' )
	 {
		alert ('Please fill in your name.');
		return false;
	 } 
 else if(document.frmContact.txt_email.value == '' )
	{
		alert ('Please fill in your email.');
		return false;
	}
 else if(document.frmContact.comments.value == '' )
	{
		alert ('Please fill in your message.');
		return false;
	}
 
 return true

}

function SendEmail(myForm) 
{

 if ( validateForm() )
	 {
	   var w = window.open('about:blank','Popup_Window','height=200,width=400,status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
	   myForm.target = 'Popup_Window';
	   w.focus();
	   return true;
	 } 
	 return false
 }