	var editor1;

	function mouseOver(id) {
		document.getElementById(id).src = "templates/maingfx/" + id + "_active.gif";
	}
	
	function mouseOver2(id, pic) {
		document.getElementById(id).src = "templates/maingfx/" + pic +"_active.gif";
	}
	
	function mouseOut(id) {	
		document.getElementById(id).src = "templates/maingfx/" + id + ".gif";
	} 
	
	function mouseOut2(id, pic) {
		document.getElementById(id).src = "templates/maingfx/" + pic + ".gif";	
	}

   	function toggleVisibility(id) {
   		if (document.getElementById(id).style.visibility == "hidden") {
    		document.getElementById(id).style.visibility = "visible";
    		document.getElementById(id).style.position = "relative";
    	} else {
    		document.getElementById(id).style.visibility = "hidden";
    		document.getElementById(id).style.position = "absolute";
    	}
   	}
   	
   	function initEditor(id) {
  		editor1 = new HTMLArea(id);
		var config = new HTMLArea.Config();
		config.toolbar = [
		  ['bold', 'italic', 'underline', 'separator', "copy", "cut", "paste", "separator","space", "undo", "redo"]
		];
		HTMLArea.replace(id, config);
	}
	
	function openWindow(link) {
		w = parseInt(screen.width);
		h = parseInt(screen.height);
		w2 = (w-810)/2;
		h2 = (h-660)/2;
		theOpts="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=0,width=820,height=660,screenX="+w2+",screenY="+h2+",left="+w2+",top="+h2;
		mywin = window.open(link,"MMAG",theOpts);
	}
