//----------GLOBAL----------------------------------

function changeCSS(id,css1,css2) {
	if (document.getElementById(id).className == css2) {
		document.getElementById(id).className = css1;
	} else if (document.getElementById(id).className == css1) {
		document.getElementById(id).className = css2;
	}	
}

function loadCSS(id,css) {
	document.getElementById(id).className = css;
}


function go(URL,target) {
	if (target == "") {
		document.location.href = URL;
	}
	else {
	window.open(URL,"new","width=700,height=500,status=yes,toolbar=yes,menubar=yes,location=no,scrollbars=yes,resizable=yes");
	}
}

function openMap(URL) {
	var maphtml = "<html><head><title>Map</title></head><body style=\"margin:5px;\">";
	maphtml += "<img src=\"" + URL + "\">";
	maphtml += "</body></html>";
	mapwindow = window.open("","map","width=390,height=340,status=no,toolbar=no,menubar=yes,location=no,scrollbars=no,resizable=no");
    mapwindow.document.write(maphtml);
}
//-----------------------------------------------------------


function loadText(filepath) {
	var inner = "<!--";
	inner += "#include virtual='";
	inner += filepath + "'-->";
	document.all["load"].innerHTML = inner; 
}
