
	function openNewWindow(PID)
	{	
		if(! window.focus) return;	
		var myWin = window.open('https://secure2.360training.com/vu3/index.cfm?event=displayCourseInfo&pid=' +  PID + '&cId=917','','width=530px,height=400px,scrollbars=yes');
		myWin.focus();	
	}
	

	//-------------------------Login validation --------------------------------------------------------
	
	
	function echeck(str) {

		var at="@"
		var dot="."
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		   alert("Invalid E-mail")
		   return false
		}

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
		   alert("Invalid E-mail")
		   return false
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		    alert("Invalid E-mail")
		    return false
		}

		 if (str.indexOf(at,(lat+1))!=-1){
		    alert("Invalid E-mail")
		    return false
		 }

		 if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		    alert("Invalid E-mail")
		    return false
		 }

		 if (str.indexOf(dot,(lat+2))==-1){
		    alert("Invalid E-mail")
		    return false
		 }
		
		 if (str.indexOf(" ")!=-1){
		    alert("Invalid E-mail")
		    return false
		 }

 		 return true					
	}

	function ValidateForm(){
	var emailID =document.getElementById('username')
	
	if ((emailID.value==null)||(emailID.value=="")){
		alert("Please Enter your Email")
		emailID.focus()
		return false
	}
	if (echeck(emailID.value)==false){
		emailID.value=""
		emailID.focus()
		return false
	}
	
	var password = document.getElementById('password')
	
	if((password.value==null)||(password.value==""))
	{
			alert('Please enter password')
			return false
	}
	
	return true
 }
 
 
 function AddToCart_OnOff()
	{
		
		var checkboxs = document.getElementsByTagName('input');		
		var isCheck = false;
		
		document.getElementById('Submit1').disabled=true;
		document.getElementById('Submit2').disabled=true;
		if(document.getElementById('Submit3')){
		document.getElementById('Submit3').disabled=true;}
		
						
		for( i=0; i < checkboxs.length; i++ )
		{
			if(	checkboxs[i].type.toLowerCase() == 'checkbox' && checkboxs[i].checked == true )				
				isCheck = true;
		}		


		if (isCheck != true )
		{
				document.getElementById('Submit1').disabled=true;
				document.getElementById('Submit2').disabled=true;
				if(document.getElementById('Submit3')){
				document.getElementById('Submit3').disabled=true;}
		}
		else
		{
				document.getElementById('Submit1').disabled=false;
				document.getElementById('Submit2').disabled=false;
				if(document.getElementById('Submit3')){
				document.getElementById('Submit3').disabled=false;}				
		}
		
		
	}
	
	
		function validate_email(field,alerttxt)
	{
		with (field)
		{
			apos=value.indexOf("@");
			dotpos=value.lastIndexOf(".");
			if (apos<1||dotpos-apos<2) 
			  {focus();alert(alerttxt);return false;}
		}
	}

	function validate_inputs() {
	
		var frm;
		
		frm = document.forms['crm'];		
		
		if (frm.firstname.value == "") {
			alert("Please enter first name.");
			frm.firstname.focus();
			return false;
		}
		
		if (frm.lastname.value == "") {
			alert("Please enter last name.");
			frm.lastname.focus();
			return false;
		}
		
		if (frm.email.value == "") {			
			alert("Please enter correct email address.");
			frm.email.focus();
			return false;
		}
		
		if (frm.email.value != "") {			
			 validate_email(frm.email, "Please enter correct email.");		
			
		}
		
		if (frm.businessphone.value == "") {
			alert("Please enter business phone.");
			frm.businessphone.focus();
			return false;
		}
		if (frm.companyname.value == "") {
			alert("Please enter company name.");
			frm.companyname.focus();
			return false;
		}
		
		
		if ( frm.jobtitle[frm.jobtitle.selectedIndex].value == "0") {		
			alert("Please select job title.");
			frm.jobtitle.focus();
			return false;	
		}
		
		if ( frm.industry[frm.industry.selectedIndex].value == "0") {		
			alert("Please select industry.");
			frm.industry.focus();
			return false;	
		}
		
		if ( frm.AREAOFINTEREST[frm.AREAOFINTEREST.selectedIndex].value == "0") {		
			alert("Please select Area of interest.");
			frm.AREAOFINTEREST.focus();
			return false;	
		}				
		
		if (frm.description.value == "") {
			alert("Please enter description.");
			frm.description.focus();
			return false
		}
		
		return true;
	}
	
	
	function addText(text) {
	if (text.value == "")
		text.value = "Search";
}

function clearText(text) {
	if (text.value == "Search")
	text.value = "";
}

