function validate_form ( )
{
	valid = true;

       if ( document.contact_form.subject.selectedIndex == 0 )
        {
                alert ( "Please select reason for contacting us." );
                valid = false;
        }
 if ( document.contact_form.Name.value == "" )
        {
                alert ( "Please fill in the 'Your Name' box." );
                valid = false;
        }
 if ( document.contact_form.Email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
		 if ( document.contact_form.Phone.value == "" )
        {
                alert ( "Please fill in the 'Phone' box." );
                valid = false;
        }
				 if ( document.contact_form.text.value == "" )
        {
                alert ( "Please fill in the 'Message' box." );
                valid = false;
        }
        
      
        return valid;
}

function popup(src) {
  win = window.open(src,"","top=20,left=20,height=300,width=450,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes")
}


function emailpage(){
var strBody = "Check out : "+window.location.href;
var strSubject = "Check www.cubecrystal.com for Crystal Gifts, 3D Laser Crystal & More!";
window.location = "mailto:?subject="+strSubject+"&body="+strBody;
}

function engform(){       
	eval("window.open('http://site.cubecrystal.com/engraveform.html','popup','menubar=yes,scrollbars=yes,width=600,height=700')");  
}