	function openNewWindow(PID)
	{	
		if(! window.focus) return;	
		var myWin = window.open('https://secure2.360training.com/vu3/index.cfm?event=displayCourseInfo&pid=' +  PID + '&cId=536','','scrollbars=yes,width=530px,height=400px,');
		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 addText(text) {
	if (text.value == "")
		text.value = "Search";
}

function clearText(text) {
	if (text.value == "Search")
	text.value = "";
}


   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 MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_validateForm() { //v4.0
  var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="") {
      if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
        if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
      } else if (test!='R') { num = parseFloat(val);
        if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
        if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
          min=test.substring(8,p); max=test.substring(p+1);
          if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
  } if (errors) alert('The following error(s) occurred:\n'+errors);
  document.MM_returnValue = (errors == '');
}
//-->