// PopupWindow.js
// Opens Midwestmtn.com popup pages in a minimal browser window.
// Written By:  Brian Bahn
// Updated:  11/27/2007


function OpenPopupWindow(URL) {
	popUp = window.open(URL, "MidwestMtnPopup", "height=550, width=775, menubar=yes, scrollbars=yes, resizable=yes, status=no, left=15, top=15"); 
	popUp.focus; 
	return; 
	}

function OpenPopupWindowMidwestMtnCom(filename) {
	var strPath = "http://www.midwestmtn.com/images/"; 
	strPath += filename; 
	popUp = window.open(strPath, "MidwestMtnPopup", "height=550, width=775, menubar=yes, scrollbars=yes, resizable=yes, status=no, left=15, top=15"); 
	popUp.focus; 
	return; 
	}

function OpenPopupWindowMidwestMtnNet(filename) {
	var strPath = "http://www.midwestmtn.net/"; 
	strPath += filename; 
	popUp = window.open(strPath, "MidwestMtnPopup", "height=550, width=775, menubar=yes, scrollbars=yes, resizable=yes, status=no, left=15, top=15"); 
	popUp.focus; 
	return; 
	}


// End of PopupWindow.js
