function checkCookie() { 
	// Determine if cookies are enabled, but only works for IE4+ and NS6+
	var cookieEnabled=(navigator.cookieEnabled)? true : false

	// If test above returns False, or property does not exist (if not IE4+ nor NS6+) 
	if (typeof navigator.cookieEnabled=="undefined" &&!cookieEnabled){ 
	    document.cookie="testcookie"   // Create cookie for testing
	    cookieEnabled=(document.cookie.indexOf("testcookie")!=-1)? true : false    // Test cookie to see if it exists
	}

	if (cookieEnabled) { 
window.open('https://hrms.highmark.com/psp/recruit/EMPLOYEE/HRMS/c/ROLE_APPLICANT.ER_APPLICANT_HOME.GBL','careers','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=900,height=700');
		return true;
	} else { 
	    alert("Your browser must have cookies enabled to visit \nthe career home page&#46; Please change your browser \nsettings to accept cookies&#44; and try again&#46;");
		return false;
	}
}