function _gei(a){if(document.getElementById){return document.getElementById(a);}if(document.all){return eval('document.all.'+a);}if(document.layers){return eval('document'+a);}return false;}
function tabHelpInit(){setInterval("tabHelpFunc()",1);}
function tabHelpFunc(){if(document.body.clientWidth>225)_gei('content').style.width=document.body.clientWidth-255+'px';}
function removeItem(a){if(confirm('Are you sure you want to remove this item from your shopping cart?')){_gei('remove'+a).submit();}}
function removeDiscount(){if(confirm('Are you sure you want to remove your discount?')){_gei('removeDiscount').submit();}}
function checkoutSIBToggle(a){
	if ( a == false ) {
		var b = _gei('bill');
		var s = _gei('ship');
		var c = b.getElementsByTagName('input');
		var d = s.getElementsByTagName('input');
		for ( var i=0; i<d.length; i++ ) {
			if ( d[i].type == 'text' ) {
				for ( var j=0; j<c.length; j++ ) {
					if ( c[j].id.substr(4) == d[i].id.substr(4) ) {
						d[i].value = c[j].value;
					}
				}
			}
		}
	}
}