var cur;

function insert_url0() {
	var GeneralPath=document.path+document.name;
	window.opener.insert_url(GeneralPath);
	self.close();
}
function insert_url1() {
	var GeneralPath='../../'+document.path+document.name;
	window.opener.WXEDIT_image_insert("Texte", GeneralPath);
	self.close();
}
function insert_url2() {
	var GeneralPath=pref+'/'+document.path+document.name;
	window.opener.SetUrl(GeneralPath, null, null, null);
	self.close();
}


function hidemenu(id) {
  if ( document.getElementById(id) ) document.getElementById(id).style.visibility = "hidden";
}

function showmenu(id) {
if(document.currentMenu) hidemenu(document.currentMenu);
document.currentMenu = id;
if (document.getElementById) {
pageW   = document.body.offsetWidth;
pageH   = document.body.offsetHeight;
//x = event.clientX+document.body.scrollLeft; 
//y = event.clientY+document.body.scrollTop; 
el = document.getElementById(id);
el.style.position = "absolute";
el.style.top=250+"px";
el.style.left=350+"px";
document.getElementById(id).style.visibility = "visible";
return false;

//if ((ie5&&event.type=="click")||(n6 && event.which==1)) {
//el.style.visibility="hidden";
//}
}
}

