if (document.checkout) {
var links=document.getElementsByTagName('a');
for (i=0;i<links.length;i++) {
	if (links[i].getAttribute('href').indexOf('More_Options')!=-1&&links[i].innerHTML=="complete your order below") {
		var newLink=document.createElement('a');
		newLink.setAttribute('href','#More_Options');
		newLink.style.display="block";
		newLink.style.marginBottom="20px";
		newLink.appendChild(document.createTextNode('Complete Your Order Below'));
		if (document.all) {
			newLink.style.styleFloat="left";
			links[i].parentNode.getElementsByTagName('table')[1].style.styleFloat="right";
			} else {
			newLink.style.cssFloat="left";
			links[i].parentNode.getElementsByTagName('table')[1].style.cssFloat="right";
		}
		links[i].parentNode.getElementsByTagName('table')[1].style.width="200px";
		var divs=links[i].parentNode.getElementsByTagName('div');
		for (j=0;j<divs.length;j++) {
			if (divs[j].className=="td") {
			var placement=divs[j];
			placement.style.clear="both";
			break;
			}
		}
		if (typeof placement!="undefined") links[i].parentNode.insertBefore(newLink,placement);
		AddButton(newLink,'Complete Your Order Below!',200,'green');
		break;
	}
}
}

function AddButton(location,text,width,style,floats) {
var span=document.createElement('span');
var div1=document.createElement('div');
var div2=document.createElement('div');
var div3=document.createElement('div');
span.className=style+"-button cartbutton";
span.onmouseover=new Function("this.className='"+style+"-button-alt cartbutton'");
span.onmouseout=new Function("this.className='"+style+"-button cartbutton'");
div1.className="button-start";
div2.style.width=width+"px";
div2.innerHTML=text;
div1.appendChild(div2);
div3.className="button-end";
span.appendChild(div1);
span.appendChild(div3);
location.replaceChild(span,location.firstChild);
}