if (document.getElementById('E_HowQuicklyDoYouNeedThisProduct0')) {
var shell=document.getElementById('E_HowQuicklyDoYouNeedThisProduct0').parentNode.parentNode;
shell.getElementsByTagName('td')[0].style.width="5px";
var required=0;
if (shell.getElementsByTagName('td')[0].getElementsByTagName('span')[1]) required=1;
shell.getElementsByTagName('td')[0].innerHTML="";
shell.getElementsByTagName('td')[1].style.width="515px";

var newtr=document.createElement('tr');
var newtd=document.createElement('td');
newtd.setAttribute('colSpan',"2");
newtd.style.fontSize="16px";
newtd.style.fontWeight="bold";
newtd.style.padding="20px 0 5px 0";
newtd.appendChild(document.createTextNode('How Quickly Do You Need This Product?'));
if (required==1) {
var span=document.createElement('span');
span.className="warning";
span.appendChild(document.createTextNode(' *'));
newtd.appendChild(span);
}
newtr.appendChild(newtd);
shell.parentNode.insertBefore(newtr,shell);
}
