var bMadeChange;
	bMadeChange = false;

function Navigate(p_sType)
{
	if (bMadeChange)
	{
		var bCarryOn = confirm("You have made changes and not saved to the database. Press OK to abandon these changes, or CANCEL to go back and Save to Database.");
		if (bCarryOn)
		{
		}
		else
		{
			return false;
		}
	}
	if (p_sType == "PROD")
	{
		document.frmSMS.action = "SMS_Products.asp";
	}
	if (p_sType == "ABOUT")
	{
		document.frmSMS.action = "SMS_AboutUs.asp";
	}
	if (p_sType == "REG")
	{
		document.frmSMS.action = "SMS_Register.asp";
	}
	if (p_sType == "COND")
	{
		document.frmSMS.action = "SMS_Conditions.asp";
	}
	if (p_sType == "CON")
	{
		document.frmSMS.action = "SMS_ContactUs.asp";
	}
	if (p_sType == "BUS")
	{
		document.frmSMS.action = "SMS_BusOpportunity.asp";
	}
	if (p_sType == "ADDSHED")
	{
		document.frmSMS.action = "SMS_SchedMsg.asp";
	}
	if (p_sType == "MNTSHED")
	{
		document.frmSMS.action = "SMS_SchedMsgMnt.asp";
	}
	if (p_sType == "HOME")
	{
		document.frmSMS.action = "Default.asp";
	}
	if (p_sType == "LOFF")
	{
		document.frmSMS.action = "SMS_Logoff.asp";
	}
	if (p_sType == "MAIN")
	{
		document.frmSMS.action = "SMS_Home.asp";
	}
	if (p_sType == "HIS")
	{
		document.frmSMS.action = "SMS_History.asp";
	}
	if (p_sType == "CONT")
	{
		document.frmSMS.action = "SMS_Contacts.asp";
	}
	if (p_sType == "GRP")
	{
		document.frmSMS.action = "SMS_Groups.asp";
	}
	if (p_sType == "LINK")
	{
		document.frmSMS.action = "SMS_Link.asp";
	}
	document.frmSMS.submit();
	return true;
}