function showStandardButton(){
	document.tabButtonStandard.src = tabButtonStandard_on.src;
	document.tabButtonSpecific.src = tabButtonSpecific_off.src;
	document.getElementById('formStandardTab').style.display = "block";
	document.getElementById('formSpecificTab').style.display = "none";			 

	var ddomain = document.domain;
	var dpath = window.location.pathname;
	deleteCookie('activetab'+dpath);
	setCookie('activetab'+dpath, 'formstandardtab', 365); //, dpath, ddomain
}


function showSpecificButton(){
	document.tabButtonStandard.src = tabButtonStandard_off.src;
	document.tabButtonSpecific.src = tabButtonSpecific_on.src;			 
	document.getElementById('formStandardTab').style.display = "none";
	document.getElementById('formSpecificTab').style.display = "block";				 

	var ddomain = document.domain;
	var dpath = window.location.pathname;
	deleteCookie('activetab'+dpath);
	setCookie('activetab'+dpath, 'formspecifictab', 365); //, dpath, ddomain
}


/*
		File uploads stuff
*/

		function buttonPush (button,status) {
			if (status == "depressed") document.getElementById(button).style.borderStyle = "inset";
			else document.getElementById(button).style.borderStyle = "outset";
		}
		
		function changeFile (param1,param2) {
			document.getElementById(param2).value = document.getElementById(param1).value;
		}
