<!--
//-------------------------------------------------------------
// The following functions are used to display a popup warning 
// when the user clicks on a link that will exit the JobLink 
// website
// 
//-------------------------------------------------------------
 function ExitSitePopup(exitToHref,currentHref)
 {
	str = "CAPITALAREA";
	if (exitToHref.toUpperCase().search(str) != -1)     
     		return;
	str = "JOBLINKCC";
	if (exitToHref.toUpperCase().search(str) != -1)     
     		return;
        str = "ESPANOL"
        if (typeof(currentHref) != "undefined")
	{
		if (currentHref.toUpperCase().search(str) != -1) 
			return confirm("Cerrar la pagina JobLink,\n\nUsted esta a punto de cerrar la pagina de JobLink. Unda OK para continuar, luego la pagina externa va abrir en la ventana siguiente. Si no quiere esto, usted puede undir CANCEL ara parar la accion y continuar en la pagina de JobLink."



);
	}
	return confirm("Leaving JobLink\n\nYou are about to leave the JobLink web site.  Click on OK to continue and the external web site will open in the current browser window.  Otherwise, click on Cancel to stop the action and remain in the JobLink web site.");
 }		
//-->
