function popWin () {
	
	var newWin = window.open("instructions.html","instructions","height=400,width=500,scrollbars=1,resizable=0");

	if (window.focus) {
		newWin.focus();
		}

}

function popWinHelp () {
	
	var newWin = window.open("../../browserhelp.html","browserhelp","height=400,width=500,scrollbars=1,resizable=0");

	if (window.focus) {
		newWin.focus();
		}

}

function popWinHelp1 () {
	
	var newWin = window.open("../browserhelp.html","browserhelp","height=400,width=500,scrollbars=1,resizable=0");

	if (window.focus) {
		newWin.focus();
		}

}

function openJnlp(aFolder, aName) {
	if (aFolder.length > 0) aFolder += "/";
	if (navigator.platform.indexOf("Mac") == -1) {
		location.href = aFolder + aName + ".jnlp";
	} else {
		location.href = aFolder + aName + "Mac.jnlp";
	}
}
