
//***********************************//

var policyPop;

function openPolicyPop(url) {
	if (!policyPop || policyPop.closed) {
		
		xStr = "left="+(screen.width -600)+",top=20,width=525,height=200,scrollbars=0,resizable=1"
		
		policyPop = window.open(url,"policyPop",xStr)	
		policyPop.focus();
	} else {
		policyPop.location = url
		policyPop.policy();
	}
}

//***********************************//

function doPrint() {
	if (window.print) {
		self.print();
	} else if (isMac) {
		alert("Please close this window and type \"Command-P\" to print this page.")
	}
}

//***********************************//

