
function RedirectPage(PageName)
{	window.location.href = "index.php?show="+PageName;
}

//function for redirecting the page   
// ARGUMENTS->PageName->STRING
// RETURN---->NOTHING
function Gotopage(PageName)
{	window.location.href = PageName;
}

