// JavaScript Document

function getUrl(id) {
	var href = document.getElementById(id).getAttribute('href');
	window.location = href;
}

function orderSubmit(thisForm) {
	thisForm.Submit.disabled=true;
	thisForm.Reset.disabled=true;
}