
	function loadAccessPage(url) {
		/*
			This function is used to Load the Access page if the user presses on Cancel. There are 2 buttons on the page one of them is of type submit and the other one is of type button.
			Note : If we have 2 buttons with the same name and different values, we are able to differentiate in the java code which button is clicked but while validating through javascript an error is thrown.
			Thus buttons with different names and types are created.
		*/
		location.href = url;
	}




loadpage = false;
function SetValueTrue()
{
	loadpage=true;
}




