<!--

// Online Quote Functions
// Internet Strategies (UK) Ltd - Kevin Mitchell

// Submit Function
function submit_me(){
	// Change button label
	document.getElementById('Submit').value = "Thank you, please wait...";
	document.getElementById('Submit').disabled = true;
	// Submit the form
	document.frmQuote.submit();
}

// Set Stage Visible Function
function setStage() {
	// stageNum is created and written out as a JS var in the PHP handler
	switch(stageNum) {
		case 1:
			document.getElementById('q1').className = 'blockShow';
			document.getElementById('q2').className = 'blockHide';
			document.getElementById('setStage').value = 1;
			document.getElementById('Submit').value = "CLICK HERE TO CONTINUE YOUR ONLINE QUOTE WITH EASYMOVES";
			break;
		case 2:
			document.getElementById('q1').className = 'blockHide';
			document.getElementById('q2').className = 'blockShow';
			document.getElementById('setStage').value = 2;
			document.getElementById('Submit').value = "CLICK HERE TO SUBMIT YOUR ONLINE QUOTE DETAILS TO EASYMOVES";
			break;
		default:
			document.getElementById('q1').className = 'blockShow';
			document.getElementById('q2').className = 'blockHide';
			document.getElementById('setStage').value = 1;
			document.getElementById('Submit').value = "CLICK HERE TO CONTINUE YOUR ONLINE QUOTE WITH EASYMOVES";
			break;
	}
}

// Set the function to call onload
window.onload=setStage;

-->
