document.domain = document.domain;
var ok_to_navigate = 'false';

function site_ready()
{
	ok_to_navigate = 'true';
}

function setPage(jackTitle, siteSection, subSection, category_id, menu_product_id){
	document.title = jackTitle;

	if (ok_to_navigate === "true")
	{
		document.jackSite.SetVariable("section", siteSection);
		document.jackSite.SetVariable("subsection", subSection);	
		document.jackSite.SetVariable("category_id", category_id);	
		document.jackSite.SetVariable("menu_product_id", menu_product_id);
	}
}

function showmap(id1, id2, id3, id4, id5)
{
	document.getElementById('iframe_map').src = '';	
	document.getElementById('html_iframe').style.display = 'none';
	
	var base_source = "http://" + document.domain + "/locations/iframe_map.php";
	var height = '360';
	var width = '450';	
	
	//well only show the first one.
	//document.getElementById('iframe_map').src = base_source + '?id1=' + id1 + '&id2=' + id2 + '&id3=' + id3 + '&id4=' + id4 + '&id5=' + id5 + "&height=" + height + "&width=" + width;
	
	document.getElementById('iframe_map').src = base_source + '?id1=' + id1 + "&height=" + height + "&width=" + width;
	document.getElementById('iframe_map').height = height + 'px';
	document.getElementById('iframe_map').width = width + 'px';
		
	document.getElementById('html_iframe').style.left = '420px';		
	document.getElementById('html_iframe').style.width = width + 'px';
	document.getElementById('html_iframe').style.height = height + 'px';
	document.getElementById('html_iframe').style.display = 'block';		
}

function showsinglemap(id1)
{
	document.getElementById('iframe_map').src = '';
	document.getElementById('html_iframe').style.display = 'none';	
	
	var base_source = "http://" + document.domain + "/locations/iframe_map.php";
	var height = '360';
	var width = '450';
	document.getElementById('iframe_map').src = base_source + '?id1=' + id1 + "&height=" + height + "&width=" + width;
	document.getElementById('iframe_map').height = height + 'px';
	document.getElementById('iframe_map').width = width + 'px';
	
	document.getElementById('html_iframe').style.left = '420px';	
	document.getElementById('html_iframe').style.width = width + 'px';
	document.getElementById('html_iframe').style.height = height + 'px';
	document.getElementById('html_iframe').style.display = 'block';	
}


function showsinglemap_state(id1)
{
	document.getElementById('iframe_map').src = '';
	document.getElementById('html_iframe').style.display = 'none';		
	
	var base_source = "http://" + document.domain + "/locations/iframe_map.php";
	var height = '365';
	var width = '400';
	document.getElementById('iframe_map').src = base_source + '?id1=' + id1 + "&height=" + height + "&width=" + width;
	document.getElementById('iframe_map').height = height + 'px';
	document.getElementById('iframe_map').width = width + 'px';
	
	document.getElementById('html_iframe').style.left = '473px';
	document.getElementById('html_iframe').style.width = width + 'px';
	document.getElementById('html_iframe').style.height = height + 'px';
	document.getElementById('html_iframe').style.display = 'block';		
}

function hidemap()
{
	document.getElementById('html_iframe').style.display = 'none';
}

function drivingdirections(address, city, state, zip, location_id)
{
	var base_source = "http://" + document.domain + "/locations/iframe_directions.php";
	window.open(base_source + "?location_id=" + location_id + "&address=" + address + "&city=" + city + "&state=" + state + "&zip=" + zip,"driving_directions","status=0,menubar=0,toolbar=0,scrollbars=1,height=600,width=975");	
}

function visiblemap()
{
	document.getElementById('html_iframe').style.display = 'block';
}


function meetjackbox_showmap(region)
{
	document.getElementById('iframe_map').src = '';	
	document.getElementById('html_iframe').style.display = 'none';	
	
	var base_source = "http://" + document.domain + "/locations/meetjackbox_iframe_map.php?region=" + region;
	var height = '363';
	var width = '430'; 
	document.getElementById('iframe_map').src = base_source + "&height=" + height + "&width=" + width;
	document.getElementById('iframe_map').height = height + 'px';
	document.getElementById('iframe_map').width = width + 'px';
	
	document.getElementById('html_iframe').style.display = 'block';
	document.getElementById('html_iframe').style.width = width + 'px';
	document.getElementById('html_iframe').style.height = height + 'px';
	document.getElementById('html_iframe').style.left = '450px';
}

function openjo(){
	window.open('http://office.jackinthebox.apollobackstage.com', 'joWin', 'menubar=0,status=0,scrollbars=0,toolbar=0,location=0,resizable=0,width=1000,height=630');
}