

//this script is used by all the hippo couture pages to get the sizes of the various clothing.
function getSize(theId) {
	return document.getElementById(theId)[document.getElementById(theId).selectedIndex].value;
}


/* function to add any item, price and size to paypal shopping cart */
function sendItemToCart(product,price,size){
	var fm = '<form target="paypal" name="myForm" action="https://www.paypal.com/cgi-bin/webscr" method="post">' +
		 '<input type="hidden" name="cmd" value="_cart">' +
		 '<input type="hidden" name="business" value="hwallace@clickwinegroup.com">'+
		 '<input type="hidden" name="item_name" value="'+product+'" />'+
		 '<input type="hidden" name="on0" value="size" />'+
		 '<input type="hidden" name="os0" value="'+size+'" />'+
		 '<input type="hidden" name="currency_code" value="USD">'+
		 '<input type="hidden" name="lc" value="US">'+
		 '<input type="hidden" name="amount" value="'+price+'" />'+
		 '<input type="hidden" name="add" value="1">'+
		 '</form>';
	//write fm to the innerHTML of a div
	document.getElementById('formSpace').innerHTML =fm;
	//submit the form
	document.myForm.submit();
}
