var page = "";
var help = 0;
var comment = "";


function TogTab(d) {
if(d.length < 1) { return; }
if (document.getElementById(d).style.display == "block") {
	document.getElementById(d).style.display = "none";
} else {
	document.getElementById(d).style.display = "block";
}
}
function HideDiv(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowDiv(d) {
if(d.length < 1) { return; }
HideDiv("home");
HideDiv("specials");
HideDiv("outside");
HideDiv("pods");
HideDiv("staff");
HideDiv("contact");

document.getElementById(d).style.display = "block";
if(d=="contact") {
	document.getElementById("map").innerHTML="<iframe width='791' height='480' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=AA+Accredited+Storage,+Clearwater,+Florida+33760&amp;sll=27.902488,-82.722212&amp;sspn=0.008628,0.017123&amp;g=14433+62nd+Street+North,+Clearwater,+Florida+33760&amp;ie=UTF8&amp;hq=AA+Accredited+Storage,&amp;hnear=Clearwater,+FL+33760&amp;cid=4074131838607452351&amp;ll=27.91305,-82.715378&amp;spn=0.036406,0.066862&amp;z=14&amp;iwloc=A&amp;output=embed'></iframe>";
	document.getElementById("maplink").innerHTML="<small><a target='_blank' href='http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=AA+Accredited+Storage,+Clearwater,+Florida+33760&amp;sll=27.902488,-82.722212&amp;sspn=0.008628,0.017123&amp;g=14433+62nd+Street+North,+Clearwater,+Florida+33760&amp;ie=UTF8&amp;hq=AA+Accredited+Storage,&amp;hnear=Clearwater,+FL+33760&amp;cid=4074131838607452351&amp;ll=27.91305,-82.715378&amp;spn=0.036406,0.066862&amp;z=14&amp;iwloc=A' style='color:#0000FF;text-align:left'>View Larger Map with Street View</a></small>";
}

}

function ShowMenu() {
	document.getElementById("logoleft").style.display = "none";
	document.getElementById("menu").style.display = "block";
}

function HideMenu() {
	document.getElementById("logoleft").style.display = "block";
	document.getElementById("logoright").style.display = "block";
	document.getElementById("menu").style.display = "none";
	document.getElementById("vidmenu").style.display = "none";
}
function ShowWeather() {
	document.getElementById("weatherframe").src="http://weather.netfrontage.com/?c=1&zip=27292";
	ShowDiv('weather');
}