// JavaScript Document
function popWin(theURL, props){
	window.open(theURL, 'pop', props);
}
function MM_openBrWindow(theURL,winName,features){ //v2.0
	var popwin = window.open(theURL,winName,features);
	popwin.focus();
	return false;
}
function storeDirectory(category, catIndex){
	theURL = 'storeDirectory/storeDirectory.asp'
	category = 'All Stores'	
	if(category!=''){
		theURL += '?category='+category+'&catIndex='+catIndex;
	}
	window.open(theURL,'storeDirectory','width=700,height=450,scrollbars=no');
}

function restaurantDirectory(category, catIndex){
	theURL = 'restaurantDirectory/restaurantDirectory.asp'
	if(category!=''){
		theURL += '?showCat='+category+'&catIndex='+catIndex;
	}
	window.open(theURL,'restaurantDirectory','width=700,height=450,scrollbars=no');
}
function dailyPlannerHowTo(){
	theURL = 'dailyPlannerHowTo.asp'
	window.open(theURL,'dailyPlannerHowTo','width=730,scrollbars=no');
}
function virtualTour(){
	window.open('vrSelect.asp', 'virtualTour', 'width=320,height=300,scrollbars=no');
}
function doRegister(){
	window.open('register.asp', 'popRegister', 'width=487,height=540,scrollbars=yes');
}
function busTimes(){
	window.open('pop_bustimes.htm', 'busTimes', 'width=960,height=450,scrollbars=no');
}
function rankinFlyer(){
	window.open('news_rankin.asp', 'popFlyer', 'width=487,height=600,scrollbars=yes');
}