/*
This is a repository for all universal JS on the site.
This will help with maintenance as we will only have to make
one change instead of dozens on individual pages. -BcB
*/

/* on hold -BcB
function ssnInfo() {
	window.open("/templates/pop-ssninfo.html", "message", "width=400,height=200,resizable=yes,scrollbars=no,left=60,top=60,screenX=60,screenY=60");
}
*/

var urlString = window.location.search
if(urlString == "") {
var urlString = "?"
}

var urlSearch = window.location.search
var newString = urlSearch.substring(1,urlSearch.length);


function printPage() {
if (window.print)
window.print()
else
alert("Sorry, your browser doesn't support this feature.");
}


