// OpenPopupWindows.js
// Written By: Brian Bahn
// Updated: 08/16/2006
// Opens Expo forms and images in a re-usable browser window with minimal navigational capabilities.


function OpenPopupWindowForms(filename) {
	var strPath = "../forms/"; 
	// alert(strPath);
	strPath += filename; 
	// alert(strPath);
	popUp = window.open(strPath, "ExpoEVSPopup", "height=550, width=775, menubar=yes, scrollbars=yes, resizable=yes, status=no, left=15, top=15"); 
	popUp.focus; 
	return; 
	}

function OpenPopupWindowImages(filename) {
	var strPath = "../images/"; 
	// alert(strPath);
	strPath += filename; 
	// alert(strPath);
	popUp = window.open(strPath, "ExpoEVSPopup", "height=550, width=775, menubar=yes, scrollbars=yes, resizable=yes, status=no, left=15, top=15"); 
	popUp.focus; 
	return; 
	}


// End of OpenPopupWindowsForms.js