function validateForm( formx, text ){
	if( confirm( text ) ){
		return true;
	}
	return false;
}

function confirmContinue( text, link ){
	if( confirm( text ) ){
		window.open( link, '_self' );
	}
}

function loadState(){
	document.getElementById( 'load' ).value="1";
	document.getElementById( 'form1' ).submit();
}