//*******************************************************************************
//'* Purpose  : Commonly used Javascript Functions in the career pages.
//'* Auth     : SV
//'* Date     : 06-Jun-2005
//'* History      Auth        Date	Description
//'  --------     --------    ------- ---------------------------------------------
//'
//'*******************************************************************************
// Start

		function openCentered (url, width, height, windowName, featureString) 

			{
				if (!windowName)
						windowName = '';
				if (!featureString)
						featureString = '';
				else
						featureString = ',' + featureString;
						var x = Math.round((screen.availWidth - width) / 2);
						var y = Math.round((screen.availHeight - height) / 2);
						featureString = 'left=' + x + ',top=' + y + ',width=' + width 
							+ ',height=' + height + featureString;
				winname = open (url, windowName, featureString);
				
				if (!winname) {
					alert("The window could not be opened. Please check if you have a popup blocker installed that may be preventing the window from opening.");
				}
				else
				{
					winname.focus();
				}				
			}
			

		function OpenWindow(Agent,Relogin)
			{
				var CompanyId = document.getElementById('txtCompanyID').value;
				if (Relogin)
					eurl = "../Frameset.aspx?CompanyID="+ CompanyId;
				else
				{
					var VacancyId = document.getElementById('txtVacancyID').value
					if (CompanyId == 14)
						eurl = "../PrivacyStatement.aspx?CompanyID="+ CompanyId + "&VacancyID=" + VacancyId;
					else
						{
						eurl = "../Frameset.aspx?CompanyID="+ CompanyId + "&VacancyId=" + VacancyId;
						}
				}	
				if (Agent){
					eurl+="&Agent=1"
				}
				awindow = openCentered(eurl, 795, 520, 'application', 'toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes')	
			}	
			
			function popHelp()
			{
				window.open ("../keywordhelp.aspx?CompanyId=" + document.getElementById("txtCompanyID").value, null, "width=650,height=450,scrollbars=yes");
			}		        
						
			function Mailwindow()
				{	
				   
					strurl = "Email.aspx?Title=" + document.getElementById("txtVacancyName").value + "&CompanyID="+document.getElementById("txtCompanyID").value + "&VacancyID="+document.getElementById("txtVacancyID").value
					openCentered(strurl,400,350, "email",'toolbar=no,location=no,status=no,scrollbars=yes,resizable=no')  
				}

			function fnGoBack()
			{
				history.back(-1);
				return false;
			}
			
//'*******************************************************************************			
// End											