	function fSizeIt() {
		// Repositions the main 2 tables
		var mainTables = document.getElementById("mainTables");
		var poo	= document.getElementById("theRelPOO"); 
		
		if (mainTables == null)
			return false;
		
		xStart = poo.offsetLeft;
		yStart = poo.offsetTop;
		mainTables.style.left = xStart;
		mainTables.style.top = yStart + 10;
		mainTables.style.display = 'block';
	}
	
	function popDelivery() {
		var thisForm=document.registerForm;
		if (thisForm.SameAs.checked) {
			thisForm.CTH_SHP_FNAME.value=thisForm.CTH_CUS_FNAME.value;
			thisForm.CTH_SHP_LNAME.value=thisForm.CTH_CUS_LNAME.value;
			thisForm.CTH_SHP_COMPANY.value=thisForm.CTH_CUS_COMPANY.value;
			thisForm.CTH_SHP_ADDR1.value=thisForm.CTH_CUS_ADDR1.value;
			thisForm.CTH_SHP_ADDR2.value=thisForm.CTH_CUS_ADDR2.value;
			thisForm.CTH_SHP_CITY.value=thisForm.CTH_CUS_CITY.value;
			thisForm.CTH_SHP_STATE.selectedIndex=thisForm.CTH_CUS_STATE.selectedIndex;
			thisForm.CTH_SHP_ZIP.value=thisForm.CTH_CUS_ZIP.value;
			thisForm.CTH_SHP_COUNTRY.value=thisForm.CTH_CUS_COUNTRY.value;
			thisForm.CTH_SHP_PHONE.value = thisForm.CTH_CUS_PHONE.value;
		}
		else{
			thisForm.CTH_SHP_FNAME.value="";
			thisForm.CTH_SHP_LNAME.value="";
			thisForm.CTH_SHP_COMPANY.value="";
			thisForm.CTH_SHP_ADDR1.value="";
			thisForm.CTH_SHP_ADDR2.value="";
			thisForm.CTH_SHP_CITY.value="";
			thisForm.CTH_SHP_STATE.value="";
			thisForm.CTH_SHP_ZIP.value="";
			thisForm.CTH_SHP_PHONE.value="";
		}
	}
	
	function NAME_IT() {
        window.open('cert.html','EANITHING','toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=no,width=425,height=300');
}
	
		function ShowRow(f_row)
	{
		var t_display = document.getElementById("ROW"+f_row).style.display;
		var ie = document.all;
		
		if (ie)
		{
			document.getElementById("ROW"+f_row).style.display = (t_display=='none') ? 'inline' : 'none'
		}
		else
		{
			document.getElementById("ROW"+f_row).style.display = (t_display=='none') ? 'table-row' : 'none'
		}
		
		document.getElementById("MORE"+f_row).src = (t_display=='none') ? '/_img/but_less.gif' : '/_img/but_more.gif'
	}
	
	