// JavaScript Document
function changeHelp(sProduct) {

	if (sProduct == 'condos')
	{
		location.href = "contactus.php?q=condos"
		return true;
	}
	if (sProduct == 'cruises')
	{
		location.href = "contactus.php?q=cruises"
		return true;
	}	
	if (sProduct == 'other')
	{
		location.href = "contactus.php?q=other"
		return true;
	}
	if (sProduct == 'technical')
	{
		location.href = "contactus.php?q=technical"
		return true;		
	}
        if (sProduct == 'vacation')
        {
                location.href = "contactus.php?q=vacation"
                return true;
        }
	else
		location.href = "http://www.res99.com/nexres/help/help_pages.cgi?pageid=302&product=" + sProduct + "&src=10016676";

}


// -->
