function RedirectJobSeekerToMoreJobs(strPageWithQueryString, strTopJobs) {
		
	if (strTopJobs == "1"){
		window.location = "/JobSeekerX/" + strPageWithQueryString;
	}
	else{
		if (top.opener == null){
			window.location = strPageWithQueryString;
		}
		else{
			top.opener.location = "http://" + top.opener.location.hostname + "/JobSeekerX/" + strPageWithQueryString;
			top.opener.focus();
		}
	}
}

function RedirectAdministratorToMoreJobs(strPageWithQueryString, strTopJobs) {
		
	if (strTopJobs == "1"){
		window.location = "/Administrator/" + strPageWithQueryString;
	}
	else{
		if (top.opener == null){
			window.location = strPageWithQueryString;
		}
		else{
			top.opener.location = "http://" + top.opener.location.hostname + "/Administrator/" + strPageWithQueryString;
			top.opener.focus();
		}
	}
}



