var URLpath = window.location.toString();
	
var filePath = URLpath.split("/");
var pos = filePath.length;
var currFile = filePath[pos-1];
var fileSplit = currFile.split(".");
var currPage = fileSplit[0];

if(currPage == ""){
	currPage = "default";
}

if(currPage.split("_")[0] == "menu"){
	currPage = "menu";
}

var currPage_ourMenu = fileSplit[0];



function floorPlanWindow(page,width,height){
	var newWindow = window.open("floor-plans/"+page, "newWin", "width="+width+", height="+height+"resizable, scrollbars, status");
	newWindow.focus();
}



