//______________________________________________________________________________________________
//Submits the form and opens a new window
function openNewWindow(mode)
{
	var showID = document.frmAdminFloorPlan.hfSID.value
	switch (mode)
		{
		case 'save' :
			document.frmAdminFloorPlan.target = "_new";
			document.frmAdminFloorPlan.action = "saveFloor.asp?SID="+ showID;
			document.frmAdminFloorPlan.submit();
			break;		
		default:
			// Ignore any other value
			break;
		}
}

//______________________________________________________________________________________________
//Opens the Legend.htm for the Admin Floor Plan
function openListingWindow(url)
{
	window.open(url,"",'width=300,height=500, directories=yes,location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes');
}
