function addToRegistry(pageID,pageName,bImgLoc, sImgLoc){
	var q = 0;
	var qty = 1;
	var notes = '';
	while(document.frmOrder.elements[q]){
		if(document.frmOrder.elements[q].name == 'vwquantity'){
			qty = document.frmOrder.elements[q].value;
		}else if(document.frmOrder.elements[q].value=="toadsandtulipsinc"){
			q = 100;
		}else{
			if(notes){notes = notes + ", ";}
			notes += document.frmOrder.elements[q].name + ": " + document.frmOrder.elements[q].value; }
			q++;
		}
	 
	var thisLoc=window.location + "";
	pageName = pageName.replace("&","and");
	var strLocation = "http://www.fastpivotsoftware.com/giftregistry/?cmd=addregistryitem" + "&store_id=toadsandtulipsinc&item_id="+pageID+"&item_name="+pageName+"&item_image_large="+bImgLoc+"&item_image_small="+sImgLoc+"&thisLoc="+thisLoc+"&qty="+qty+"&notes="+notes;
	var GRpopup = window.open(strLocation,"WLpopup","width=990,height=885,toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=430,height=400");
	 GRpopup.focus();
}

