// JavaScript Document
var myWindow;
function openCenteredWindow() {
    var width = 670;  //window width
    var height = 732; //window hight
	url="map.html"
	var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
	window.open(url,'_blank','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+',left='+left+',top='+top);
}

/*=============================================================================*/

function validate_form(){
	var firstname = document.getElementById('txtName').value;
	var lastName = document.getElementById('txtLname').value;
	var courses = document.getElementById('courses').value;
	var email = document.getElementById('email').value;
	
	if(firstname== "" || lastName== "" || email== ""){
		alert("Please fill in the fields that are mandatory i.e. marked with an *");
	}else{
		document.certificate.submit();	
	}					
}
/*=============================================================================*/

function validate_form2(){
	var firstname = document.getElementById('txtName').value;
	var lastName = document.getElementById('txtLname').value;
	var courses = document.getElementById('courses').value;
	var email = document.getElementById('email').value;
	
	if(firstname== "" || lastName== "" || email== ""){
		alert("Please fill in the fields that are mandatory i.e. marked with an *");
	}else{
		window.open('EIIM_prospectus.zip');
		document.certificate1.submit();	
	}					
}
/*=============================================================================*/
function validate_formEiim(){
		        var firstname = document.askAQuestion.certificateget.ElementById('txtName');
				var LastName = document.getElementById('txtLname');
				var email= document.getElementById('email');
				if(firstname==""){
				alert("Please fill in the fields that are mandatory i.e. marked with an *");
			}
			else{
				document.certificate.submit();
				
				}					
}
/*=============================================================================*/

function loadIframe(name){ 
	var iframe = document.getElementById('iframe1'); // just for clarity
	iframe .src = name+".html";
	} 



/*=============================================================================*/

function validate_form1 (){
		        if (document.certificate1.fullname.value==" * Full Name" || document.certificate1.lastname.value==" * Last Name" || document.certificate1.phoneNo.value==" * Phone Number" || document.certificate1.mobile.value==" * Mobile Number" || document.certificate1.email1.value==" * E-mail" || document.certificate1.email2.value==" * E-mail"){
			alert("Please fill in the fields that are mandatory i.e. marked with an *");
			}else{
				document.certificate1.submit();	
		}
			
}
/*=============================================================================*/
