// sets default browser
var browser = "";

// suppresses errors for end users
window.onerror=null;

// non-DoD alerts
function notdod(urltarget){
	if (confirm("You are now leaving the United States Department of Defense web domain and entering the web site of another organization. The Department of Defense does not maintain the target web site.  The web site you are entering contains information created, published or otherwise posted by organizations and entities independent of the Department of Defense. The Department of Defense does not approve, endorse or certify any products, services or information contained in the web sites of any other organizations. The Department of Defense is not responsible for the content, accuracy, legality, safety, functionality, timeliness, reliability, fitness for any particular purpose, accessibility or privacy of any such web site or hyperlink.\n\nClick 'OK' to continue or cancel.")){
		window.open(urltarget,"blankwindow","");
		
	}
}

var otherPage;
function otherWebPage(url){
	if (!otherPage || otherPage.closed){
		otherPage=window.open(url);
		otherPage.focus();
	}else{
		otherPage.location=url;
		otherPage.focus();
	}	
}
