// JavaScript Document

function popUpPrivacy(theURL) {
// THIS FUNCTION IS USED
	var theName = "Privacy";
	var theProperties = "width900,height=900";
	var theProps = theProperties + ",status=yes,left=150,top=150,scrollbars=yes";
	window.open(theURL,theName,theProps);
}

function navigate(url){
	document.location.href=url;
}
	
