function loggedIn(industry, category){ //get a list of all cookies that pertain to this document var allcookies = this.document.cookie; //if none found go to login page if(allcookies ==""){ location.href="interview_page3.html?industry=" + industry + "&category=" + category; return false; } //extract just the named cookie var start = allcookies.indexOf("LOGIN_ID="); if(start == -1) { location.href="interview_page3.html?industry=" + industry + "&category=" + category; return false; } location.href="interview_page3.html?industry=" + industry + "&category=" + category; } /*function loggedIn(industry, category){ //get a list of all cookies that pertain to this document var allcookies = this.document.cookie; //if none found go to login page if(allcookies ==""){ location.href="http://www.employmentguide.com/jobseeker/industry_login.cfm?industry=" + industry + "&category=" + category; return false; } //extract just the named cookie var start = allcookies.indexOf("LOGIN_ID="); if(start == -1) { location.href="http://www.employmentguide.com/jobseeker/industry_login.cfm?industry=" + industry + "&category=" + category; return false; } location.href="http://www.employmentguide.com/jobseeker/interview_add.cfm?industry=" + industry + "&category=" + category; }*/