function EmpLoginNow(thisForm) {
	if (thisForm.UserID.value=='') {
		alert ("Please enter your Username.")
		thisForm.UserID.focus()
		return
	}
	if (thisForm.Password.value=='') {
		alert ("Please enter your Password.")
		thisForm.Password.focus()
		return 
	}
	thisForm.TargetPage.value='http://www.jobsdb.com/'+CountryCode+'/'+LangCode+'/V6/Employer/Home/Home.asp'
	thisForm.action='http://www.jobsdb.com/'+CountryCode+'/'+LangCode+'/V6/Employer/Login/Login.asp?PN=LoginProcess'
	NewEmpWin('')
	thisForm.target='V6EmpHome'
	setTimeout('document.EmpLogin.submit()', 1500)
	setTimeout('document.EmpLogin.UserID.value=""',3000)
	setTimeout('document.EmpLogin.Password.value=""',3000)	
}
