var giftPrice = ""; 
var giftName = ""; 
var giftDescription = "";
 
function yahoostoreMGLpopup(f, refsource, storename, cartname) { 
	var m; 
	var u = ""; 
	var n; 
    
	if (f) { 
    	//giftPrice = f.giftPrice.value;
		//giftName = f.giftName.value;
		//giftDescription = f.giftDescription.value;
	  
		for (var i = 0; i < f.elements.length; i++) {
			m = f.elements[i].selectedIndex; 
			n = f.elements[i].name
			if (m > -1) { 
				u = u + n + "=" + f.elements[i].options[m].text + ", "; 
	        } 
			if (f.elements[i].name.substr(0,8) == "quantity" ) { 
            	u = u + "Quantity=" + f.elements[i].value + ", "; 
			} 
    	} 
	}
	if ( u != "" ) { 
      u = u.substr(0, u.length-2); 
      u = "I would like these options: " + u; 
      giftDescription = u + ".  " + giftDescription; 
	} 

	u = "http://www.mygiftlist.com/register_gift.asp?refSource=" + escape(refsource) + "&giftURL=" + escape(document.URL) + "&giftName=" + escape(giftName) + "&giftRetailer=" + escape(storename) + "&giftCart=" + escape(cartname) + "&giftPrice=" + escape(giftPrice) + "&giftDescription=" + escape(giftDescription); 
	var mgl = window.open(u,"MGL","width=720,height=500,top=60,left=100,resizable,scrollbars"); 
}
