function fillShipAddr(bFill) {
	var frm = document.getElementById("frmBill")
	
	for (var i=0; i<frm.elements.length; i++) {
		var eDest = frm.elements[i];
		if (eDest.name.substr(0, 4) == "ship") {
			eDest.disabled = bFill;
			var eSrc = frm.elements["bill" + eDest.name.substr(4)];
			if (eDest.type == "text") {
				eDest.value = bFill ? eSrc.value : "";
			} else {
				eDest.options[bFill ? eSrc.selectedIndex : 0].selected = true;
			}
		}
	}
}

function redirectHome() {
	window.location = "index.asp";
}

function redirectDescRev() {
	window.location = "index.asp?fuseaction=main.eBayDescReviser";
}

function viewdetails(proId) {
	window.open('dsp_viewImage.asp?productId='+proId,'','toolbar=no,scrollbars=yes,status=no,width=600,height=400,top=15,left=50,resizable=yes')	 
}
