var unsaved = false
var navigateconfirm = 'You Have made changes to the current form which have not been saved.\n\nClick \'OK\' to proceed anyway or \'Cancel\''
navigateconfirm += ' to return to the form and Save your changes';

function d_help(title,text){

	/*var h = document.getElementById('help');
	if(title == 'off'){
		h.style.display = 'none';
		h.innerHTML = '&nbsp;';
	}else{
		h.innerHTML = '<h2>' + title + ' Help</h2>  <a href="javascript:d_help(\'off\');" class="close"><img src="Images/close.gif" width="12px" height="12px"></a><p>' + text + '<p>';
		h.style.display = 'block';
	}*/

}

function d_NavigateGuide(){
	if(unsaved){
		if(confirm(navigateconfirm)){
			return true;
		}else{
			return false;
		}
	}else{
		return true;
	}
}
