// JavaScript Document

// Spawn local pops from menus
// ********************************************************
function pop_menu(page_req)
{
	switch (page_req)
	{
		// these change location:
		case "":
		case "?page=prequal":
			//document.location.href = "index.php"+page_req;
			document.location.href = "index.php";
			break;
		// this spawns the popup:
		default:
			page_url = page_req;
			window.open(page_url,"popwin","width=490,height=420,resizable=no,scrollbars=yes,toolbar=no,menubar=no");
			break;
	}
}
