var asBilling = false

function asBilling_Click(){
	asBilling = document.tehform.sameasabove.checked;
	// if the box has been checked
	if (asBilling) {
		copyValues();
	}
	// if the box has been unchecked
	else
	{
		document.tehform.shiptitle.value = "";
		document.tehform.shipfirstname.value = "";
		document.tehform.shiplastname.value = "";
		document.tehform.shippropname.value = "";
		document.tehform.shipaddress1.value = "";
		document.tehform.shipaddress2.value = "";
		document.tehform.shipcity.value = "";
		document.tehform.shipcountry.value = "";
		document.tehform.shipstate.value = "";
		document.tehform.shippostcode.value = "";
	}
	
}


function copyValues (){
	if (asBilling){
		document.tehform.shiptitle.value = document.tehform.title.value;
		document.tehform.shipfirstname.value = document.tehform.firstname.value;
		document.tehform.shiplastname.value = document.tehform.lastname.value;
		document.tehform.shippropname.value = document.tehform.propname.value;
		document.tehform.shipaddress1.value = document.tehform.address1.value;
		document.tehform.shipaddress2.value = document.tehform.address2.value;
		document.tehform.shipcity.value = document.tehform.city.value;
		document.tehform.shipcountry.value = document.tehform.country.value;
		document.tehform.shipstate.value = document.tehform.state.value;
		document.tehform.shippostcode.value = document.tehform.postcode.value;
	}
}

function showLayer(layerName) {
	if (document.getElementById) {
		var targetElement = document.getElementById(layerName);
		targetElement.style.display = 'inline';
	}
}
function hideLayer(layerName) {
	if (document.getElementById) {
		var targetElement = document.getElementById(layerName);
		targetElement.style.display = 'none';
	}
}

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=880,width=580');
	if (window.focus) {newwindow.focus()}
}

var newwindow;
function poptastic2(url)
{
	newwindow=window.open(url,'name','height=500,width=500');
	if (window.focus) {newwindow.focus()}
}
var newwindow;
function poptastic3(url)
{
	newwindow=window.open(url,'name','height=400,width=500');
	if (window.focus) {newwindow.focus()}
}
