function sameAsShipping() {
	if($("SameAs").checked == true) {
		$("DealerBillingAddress").value = $("DealerShippingAddress").value;
		$("DealerBillingAddress").readOnly = true;
		$("DealerBillingZip").value = $("DealerShippingZip").value;
		$("DealerBillingZip").readOnly = true;
		$('DealerBillingCountry').value = $('DealerShippingCountry').value;
		$('DealerBillingCountry').readOnly = true;
	}else{
		$("DealerBillingAddress").readOnly = false;
		$("DealerBillingZip").readOnly = false;
		$('DealerBillingCountry').readOnly = false;
	}
}

function updateSameAsShipping() {
	if($("SameAs").checked == true) {
		$("DealerBillingAddress").value = $("DealerShippingAddress").value;
		$("DealerBillingZip").value = $("DealerShippingZip").value;
		$('DealerBillingCountry').value = $('DealerShippingCountry').value;
	}
}

function showNoteForm($id) {
	$("noteForm" + $id).style.display = "inline";
	if($("itemNote" + $id)) {
		$("itemNote" + $id).style.display = "none";
	}
}
function hideNoteForm($id) {
	$("noteForm" + $id).style.display = "none";
	if($("itemNote" + $id)) {
		$("itemNote" + $id).style.display = "inline";
	}
}

function updateShippingForm() {
	if($("OrderRecipientId").value == "pickup") {
		$("method").style.display = "none";
		$("name").style.display = "none";
		$("address").style.display = "none";
		$("zip").style.display = "none";
		$('country').style.display = 'none';
	}else if($("OrderRecipientId").value == "customer") {
		$("method").style.display = "block";
		$("name").style.display = "block";
		$("address").style.display = "block";
		$("zip").style.display = "block";
		$('country').style.display = 'block';
	}else{
		$("method").style.display = "block";
		$("name").style.display = "none";
		$("address").style.display = "none";
		$("zip").style.display = "none";
		$('country').style.display = 'none';
	}
}

function keywordSearch() {
	$('keyword_search').style.display = 'block';
	$('part_number_search').style.display = 'none';
}

function partNumberSearch() {
	$('part_number_search').style.display = 'block';
	$('keyword_search').style.display = 'none';
}

function cancelSearch() {
	$('keyword_search').style.display = 'none';
	$('part_number_search').style.display = 'none';
	$('PartDescription').value = '';
	$('PartPartId').value = '';
}


function create_txt_file(order_id) {
	new Ajax.Updater("edi-log", "/admin/orders/submit/" + order_id, {
		asynchronous: true,
		method: "get"
	});
}

function view_photo(photo_id, width, height) {
	window.open('/img/parts/' + photo_id + '.jpg', null, 'width='+width+',height='+height+',status=no,toolbar=no,menubar=no,location=no');
}

