function GoNext()
{
	sName = document.URLUnencoded;
	if (sName.lastIndexOf("Luv") != -1)
	{
		alert("We're in the Luv Suite");
		frmSMS.action = "LuvMain.asp";
	}
	if (sName.lastIndexOf("SMS_") != -1)
	{
		alert("We're in the SMS Suite");
		frmSMS.action = "Default.asp";
	}
	if (sName.lastIndexOf("Rem") != -1)
	{
		alert("We're in the Reminder Suite");
		frmSMS.action = "RemMain.asp";
	}
	
	frmSMS.submit();
}
