// ///////////////////////////////////////////////////////////////////////////////////////
// Opens a new window
// ///////////////////////////////////////////////////////////////////////////////////////
var newWindow = null;

function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}

function popUpWin(url, type, strWidth, strHeight){
	
	closeWin();
	
	if (type == "fullScreen"){
		strWidth = screen.availWidth - 10;
		strHeight = screen.availHeight - 160;
	}
	
	var tools="";
	if (type == "standard" || type == "fullScreen") tools = "resizable,toolbar=yes,location=yes,scrollbars=yes,menubar=yes,width="+strWidth+",height="+strHeight+",top=0,left=0";
	if (type == "console") tools = "resizable,toolbar=no,location=no,scrollbars=no,width="+strWidth+",height="+strHeight+",left=0,top=0";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}

// ///////////////////////////////////////////////////////////////////////////////////////
// Copies text from one field to another (billing address to shipping)
// ///////////////////////////////////////////////////////////////////////////////////////

function data_copy()
{

if(document.checkout.copy[0].checked){
document.checkout.shipping_firstname.value=document.checkout.billing_firstname.value;
document.checkout.shipping_mi.value=document.checkout.billing_mi.value;
document.checkout.shipping_lastname.value=document.checkout.billing_lastname.value;
document.checkout.shipping_company.value=document.checkout.billing_company.value;
document.checkout.shipping_address.value=document.checkout.billing_address.value;
document.checkout.shipping_address2.value=document.checkout.billing_address2.value;
document.checkout.shipping_city.value=document.checkout.billing_city.value;
document.checkout.shipping_state.value=document.checkout.billing_state.value;
document.checkout.shipping_zip.value=document.checkout.billing_zip.value;
document.checkout.shipping_phone1.value=document.checkout.billing_phone1.value;
document.checkout.shipping_phone2.value=document.checkout.billing_phone2.value;
document.checkout.shipping_phone3.value=document.checkout.billing_phone3.value;
document.checkout.shipping_phone4.value=document.checkout.billing_phone4.value;
}else{
document.checkout.shipping_firstname.value="";
document.checkout.shipping_mi.value="";
document.checkout.shipping_lastname.value="";
document.checkout.shipping_company.value="";
document.checkout.shipping_address.value="";
document.checkout.shipping_address2.value="";
document.checkout.shipping_city.value="";
document.checkout.shipping_state.value="";
document.checkout.shipping_zip.value="";
document.checkout.shipping_phone1.value="";
document.checkout.shipping_phone2.value="";
document.checkout.shipping_phone3.value="";
document.checkout.shipping_phone4.value="";

}

}