function testUrlforCartID() {
	var bln = false;
	var strHref = window.location.href;
	var strQueryString = strHref.substr(strHref.indexOf("tabid")+6);
	var aQueryString = strQueryString.split("/");
	var intTabID = parseInt(aQueryString[0]);
	var version = navigator.userAgent;
	var findIE6 = version.indexOf('MSIE 6');

	if (intTabID == 112) {
		if(document.getElementById("dnn_ctr457_ViewCheckout_ctl00_pnlPaymentOptions")) {
			if(findIE6 != -1)
			{
			   document.getElementById("dnn_ctr457_ViewCheckout_ctl00_pnlPaymentOptions").childNodes[0].deleteRow(11);
			} else {
				document.getElementById("dnn_ctr457_ViewCheckout_ctl00_pnlPaymentOptions").childNodes[1].deleteRow(11);
			}
		}
		
		if(document.getElementById("dnn_ctr457_ViewCheckout_ctl00_ShipSelectionMsg")) {
			document.getElementById("dnn_ctr457_ViewCheckout_ctl00_ShipSelectionMsg").style.display = "none";
		}
		
		if(document.getElementById("ShippingMethodID1")) {
			document.getElementById("ShippingMethodID1").checked = true;
		}
	}
}

if (window.attachEvent){
	window.attachEvent("onload", testUrlforCartID);
}	
else if(document.addEventListener){
	document.addEventListener("DOMContentLoaded", testUrlforCartID, false);
}
else{
	window.onload = testUrlforCartID;
}
