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