function goBack()
{
    history.go(-1);
}

function launchImage(section, imgName)
{
	window.open('Gallery.aspx?section=' + section + '&imgName=' + imgName, 'blank', 'toolbar=yes, fullscreen=yes');
	
}

function launchSVG(svgName)
{
	if (svgName == "diner")
	{
		window.open('diner.html', 'blank', 'toolbar=no, scrollbars=no, fullscreen=yes');
	}
	if (svgName == "rolex")
	{
		window.open('rolex.html', 'blank', 'toolbar=no, scrollbars=no, fullscreen=yes');
	}
	if (svgName == "charts")
	{
		window.open('charts.html', 'blank', 'toolbar=no, scrollbars=no, fullscreen=yes');
	}
}

function launchWindow(url)
{
	window.open("http://www." + url + ".com", "blank", "scrollbars=yes,toolbar=yes,resizable=yes,top=0,left=0,width=800,height=600");
}

function launchLocal(url)
{
	window.open("http://" + url, "blank", "scrollbars=yes,toolbar=yes,resizable=yes,top=0,left=0,width=800,height=600");
}

function closeMe()
{
	window.close();
}

function comingSoon()
{
	alert("This section is coming soon!");
}