<!-- hide script from old browsers
function urlcommify(bit) {
	bit = bit.replace(/\./g,"-").replace(/\//g,".").replace(/\.\-\.\-\+/g,"+").replace(/\.\-\+/g,"+") + ".html";
		return bit;
	}

	function urlify(toencode,toprepend) {
		toencode = toencode.toLowerCase().replace(/ \& /g," and ").replace(/^\s+/g,"").replace(/\s+$/g,"").replace(/\s/g,"-");
		toencode = toencode.replace(/[^a-z0-9-_.]/g,"");
		return toprepend + "+" + toencode;
	}

	function getUrl2(productId,caption) {
		return "http://awarenessgiftboutique.com/cgi-bin/store/cpshop.cgi/" + urlcommify("/." + productId + urlify(caption,"/-/-"));
	}

// end hiding script from old browsers -->