function over(id, color, menu) {
	if (id == "") {return false;}
	if (color != "") {
		document.getElementById(id).style.backgroundColor = '#'+color;
		}
	else {
		document.getElementById(id).style.backgroundColor = '';
		}
	if (menu != "no") {
		document.getElementById(id).style.cursor = 'pointer';
		}
	}

function out(id, color, menu) {
	if (id == "") {return false;}
	if (color != "") {
		document.getElementById(id).style.backgroundColor = '#'+color;
		}
	else {
		document.getElementById(id).style.backgroundColor = '';
		}
	if (menu != "no") {
		document.getElementById(id).style.cursor = '';
		}
	}

function mirronix_popupImg(URL,TTL) {
		var inc_y = 29;
		var inc_x = 10;
		params = "top=50, left=200,width=600, height=500, Status=no, toolbar=no, menubar=no, location=no, directories=no, scrollbars=no";
		popupWin = window.open("","popupWin",params);
		popupWin.focus();
		popupWin.document.open();
		popupWin.document.write("<html><head><title>"+TTL+"</title></head>");
		popupWin.document.write("<sc"+"ript language = JavaScript>");
		popupWin.document.write("function closeWindow(){");
		popupWin.document.write("parent.window.close() };");
		popupWin.document.write("</sc"+"ript>");
		popupWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><a href=''><img src='"+URL+"' border='0' name='cha1' onClick='closeWindow()' alt=''  onload='window.resizeTo(window.document.images[0].width+"+inc_x+",window.document.images[0].height+"+inc_y+")'></a></body></html>");
		popupWin.document.close();
	}

