// JavaScript Document
	function confirmation(path,page) {
	var answer = confirm(page  + ' are only available for current SRPMIC employees. If you are an employee, please click "OK" to continue, otherwise click "Cancel".');
	if (answer){
		window.location = "http://agency.governmentjobs.com/srpmic/default.cfm?" + path;
	}
	else{}
	}
