
/*				_javascript/default.js
*/



// form functions


function switchFunction(myFunc,myModule){
// switches function select 
// submits form


		var myFunctionInput=document.getElementById('field_myFunction');
		var myModuleInput=document.getElementById('field_myModule');
		myFunctionInput.value=myFunc;
		myModuleInput.value=myModule;

		document.myForm.submit();
	
}

function changeFormAction(url){

		document.myForm.action=url;

}




function navigateURL(url){
// used for buttons

	window.top.location.href=url;

}

/*			created on [ 09.29.2009 ] Grenard Madrigal
/*			updated on [ 09.29.2009 ] Grenard Madrigal
/*			evolve, create © 2009
*/





