/*
function getUrlVars()
{
	var vars = [], hash;
	var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
	for(var i = 0; i < hashes.length; i++)
	{
		hash = hashes[i].split('=');
		vars.push(hash[0]);
		vars[hash[0]] = hash[1];
	}
	return vars;
}
var hash = getUrlVars();
var showtour = hash['showtour'];
if(showtour=="true")
{
// alert(showtour);

}


function showtour()
{
	Modalbox.show(\"pages/modal_help.php\",
	{
		title : \"The helping hand\",
		width:400,
		height:200,
		overlayClose: true                
	});
	setTimeout(\"Modalbox.hide()\", 5000);
	return false;

}
window.onload = showtour;
*/


function getUrlVars()
{
	var vars = [], hash;
	var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
	for(var i = 0; i < hashes.length; i++)
	{
		hash = hashes[i].split('=');
		vars.push(hash[0]);
		vars[hash[0]] = hash[1];
	}
	return vars;
}
function showtour()
{
	var hash = getUrlVars();
	var showtour = hash['showtour'];
	if(showtour=="true")
	{
	// alert(showtour);
		Modalbox.show("pages/modal_help.php",
		{
			title : "The helping hand",
			width:400,
			height:200,
			overlayClose: true                
		});
		// setTimeout("Modalbox.hide()", 5000);
		return false;
	}
}





