<!--
    function loadCollection(_collections) {
        //Collection id 9 is the holiday collection id, redirecting to /collections.aspx?collectionId=9 redirects to /holiday
        if(window.location.href.indexOf("collections.aspx") > 0 && _collections != 9) {
            window.document.shell.SetVariable("_collections", _collections);
        } 
        else {
            window.location="/collections.aspx?collectionId="+_collections;
        }
    }
	 
	function gup( name ) {
        name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
        var regexS = "[\\?&]"+name+"=([^&#]*)";
        var regex = new RegExp( regexS );
        var results = regex.exec( window.location.href );
        if( results == null ) { return ""; }
        else { return results[1]; }
	}
	//-->