function goTo (page) {
/* This function is called from the navigation menu
   to jump to the designated URL. Empty values
   are ignored and "--" indicates a menu seperator    */
   
	if (page != "" ) 
	{
		// add non secure pages as exception
   		if (page.indexOf('index') == -1 &&
			page.indexOf('insignia') == -1 &&
			page.indexOf('sizing') == -1 &&
			page.indexOf('press') == -1 &&
			page.indexOf('journal') == -1 &&
			page.indexOf('blog') == -1 &&
			page.indexOf('events') == -1 &&
			page.indexOf('careers') == -1 &&
			page.indexOf('store_location') == -1 &&
			page.indexOf('faq') == -1 &&
			page.indexOf('contact') == -1 &&
			page.indexOf('thingswelove') == -1 &&
			page.indexOf('affiliate') == -1 &&
			page.indexOf('testimonials') == -1 &&
			page.indexOf('opportunity') == -1)
		
		{

   			var siteRoot = "https://www.rebeccaanddrew.com/";
			var path = siteRoot + "store/shop/";
		}
		else
		{
			var siteRoot = "http://www.rebeccaanddrew.com/";
			var path = siteRoot;
		}

		
		
		// Create an absolute path
	        // the pages are either "signin.asp?refer="
	        // or "showcart.asp"
	        var thisLink = path + page;
	
	       // Go to the page
	       self.location = thisLink;
	}
	return false;
}