function setHeight(id){     single     = id.length <= 1 ? true : false;     cell     = new Array();     if (single && document.getElementById( id[0] ) == null) {     	return;     }                  id = single ? document.getElementById( id[0] ).childNodes : id;     for(cellCount=0; cellCount<id.length; cellCount++){          if(String(id[cellCount].tagName).toLowerCase()=="div" && single)               cell.push( id[cellCount] );          else if( !single )               cell.push( document.getElementById(id[cellCount]) );     }     for(checkHeight=0, maxHeight=0; checkHeight<cell.length; checkHeight++) {          if (cell[checkHeight] != null) {               maxHeight = cell[checkHeight].offsetHeight>maxHeight ? cell[checkHeight].offsetHeight : maxHeight;          }     }     for(var i=0; i<cell.length; i++) {          if (cell[i] != null) {               cell[i].style.height = String(maxHeight)+"px";          }     }}				function FillShipping(f) {  if(f.shippingtoo.checked == true) {    f["shipping_address[first_name]"].value = f["billing_address[first_name]"].value    f["shipping_address[last_name]"].value = f["billing_address[last_name]"].value;    f["shipping_address[address]"].value = f["billing_address[address]"].value;    f["shipping_address[city]"].value = f["billing_address[city]"].value;    f["shipping_address[state]"].value = f["billing_address[state]"].value;    f["shipping_address[zip]"].value = f["billing_address[zip]"].value;    f["shipping_address[country_id]"].value = f["billing_address[country_id]"].value;        f["shipping_address[telephone]"].value = f["billing_address[telephone]"].value;  }}window.onload = function(){	setHeight(['eq_columns']);}