function getContentUrl(iPgId) {
	var sWebRoot = "";

	var sURL = sWebRoot + "contentHome.htm";

	switch(iPgId) {
		// viewer files
		case 11:
			sURL = sWebRoot + "vwrBrig01.htm";
			break;

		case 12:
			sURL = sWebRoot + "vwrBrig02.htm";
			break;

		case 13:
			sURL = sWebRoot + "vwrBrig03.htm";
			break;
	
		case 14:					   
			sURL = sWebRoot + "vwrBrig04.htm";
			break;
	
		case 15:
			sURL = sWebRoot + "vwrBrig05.htm";
			break;

		default:
			sURL = "";
	}

	return sURL;
}

function openViewer(sPgId) {
	var sWinName = "viewer";
	var sFeatures = "width=550,height=550";
	var win = window.open(getContentUrl(sPgId), sWinName, sFeatures);
	win.focus();
}


// ©2001 Joe McKeown
//*********** capture user right-click for half-assed security **************
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Content and Code ©2001-2006 Jaded Angel Design");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);

//window.onmousedown=right;
//***********************
