function validate_form() 
	{
		d=document.career;
		
		if(d.name.value=="")
		{
		alert("enter your name");
		d.name.focus();
		return false;
		}
		if(d.email.value=="")
		{
		alert("please enter ur e-mail id");
		d.email.focus();
		return false;
		}
		
		if((!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(d.email.value))))
		{
		alert("enter your email in the followimg form abc@xyz.com");
		d.email.focus();
		return false;
		}
	}

//for pop of the url
function mypopup(url1)
 {
   mywindow = window.open (url1,"mywindow","location=0,status=0,scrollbars=1,width=700,height=700,directory=0,left=20,top=20");
 } 
