/* set the mouse pointer (focus) to the quantity field: there are two quantity fields, but only one is rendered */
var inputQuantityField = document.getElementById("productConfig:ID_QUANTITY");
if ( inputQuantityField == null ) {
	inputQuantityField = document.getElementById("productConfig:ID_QUANTITY2");
	if ( inputQuantityField != null ) {
		document.forms['productConfig'].elements['productConfig:ID_QUANTITY2'].focus();
	}
}
else {
	document.forms['productConfig'].elements['productConfig:ID_QUANTITY'].focus();
}
