// JavaScript Document
function __fncOpenHtmlEditor(strOwner, strValue){
	var newWin = window.open("./../htmlEditor.php?owner="+strOwner+"&value="+strValue, "", "ststusbar=1,menubar=0,height=600,width=1000,scrollbars=1");
	newWin.focus();
}

function imgOnover(id){
	$("menu"+id+"1").className ="menu_l_img";
	$("menu"+id+"2").className ="menu_c_img";
	$("menu"+id+"3").className ="menu_r_img";
}
function imgOnout(id){
	$("menu"+id+"1").className ="menu_l";
	$("menu"+id+"2").className ="menu_c";
	$("menu"+id+"3").className ="menu_r";
}