function setAndReset(sectionid, productid, box) {
	
	// document.getElementById('price' + '_' + sectionid + '_' + productid).innerHTML=box[box.selectedIndex].cost;
	document.getElementById('price' + '_' + sectionid + '_' + productid).innerHTML = box[box.selectedIndex].getAttribute('cost');	

}


function fixH(one,two) {
	if (document.getElementById(one)) {
		var lh=document.getElementById(one).offsetHeight;
		var rh=document.getElementById(two).offsetHeight;
		// Work out the screen height - ( banner + margins )
		var min_height = screen.height - ( 80 + 10 );
		if ( lh < min_height ) { lh = min_height };
		var nh = Math.max(lh, rh); 
		document.getElementById(one).style.height=nh+"px";
		document.getElementById(two).style.height=nh+"px";
		// alert (one + ' = ' + lh.toString() + ', ' + two + ' = ' + rh + ', new ' + one + ' height = ' + nh + 'screen height=' + screen.height);
	}
}