var isIE = document.all;

function newWindow(url){
	var w = window.open(url);
	if(w == null){
		if(confirm("Your browser does not support popups, click OK to navigate to this window, or Cancel to remain on this page")){
			window.location = url;
		}
		
	}
}

function openPDF(url){
	var w = window.open("pdf.htm");
	if(w == null){
		if(confirm("Your browser does not support popups, click OK to navigate to this location, or Cancel to remain on this page")){
			window.location = url;
		}
	}else{
		w.location = url;
	}
}
function openDOC(doc){
	var w = window.open("doc.htm");
	if(w == null){
		if(confirm("Your browser does not support popups, click OK to navigate to this location, or Cancel to remain on this page")){
			window.location = doc;
		}
	}else{
		w.location = doc;
	}
}
function nav(whereTo){
		 
			var frms = window.parent.document.getElementsByTagName("iframe")
			var frm = frms[1];
			switch(whereTo.toUpperCase()){
				case"HOME":
					frm.src = "home.htm";
					break;
				case"HISTORY":
					frm.src = "history.htm"
					break;
				case"EVENTS":
					frm.src = "events.htm"
					break;
				case"MEMBERSHIP":
					frm.src = "membership.htm"
					break;		
				case"CHARITIES":
					frm.src = "charities.htm"
					break;
				case"LEOS":
					frm.src = "leos.htm"
					break;		
				case"PNP":
					frm.src = "pnp.htm"
					break;
				case"FISHINGDERBY":
					frm.src = "fishingDerby.htm"
					break;							
				default:
					frm.src = "home.htm";
					break;
					
			}
		}

function resizeMain(height){
	height = isIE?height:document.height;
	var frms = window.parent.document.getElementsByTagName("iframe")
	var w = frms[1];
	w.style.height = height + 200;
	 

}