function goTo(page)
{
	switch(page)
	{
		case "":
		break;
		default:
			window.location = page;
		break;
	}	
}
