function fnIPE_BIU(oText, strMod){
	var range = $("#" + oText).getSelection() ;
	$("#" +oText).replaceSelection("[" + strMod + "]" + range.text + "[/" + strMod + "]") ;
}

function fnIPE_InsertAfter(oText, strMod){
	var range = $("#" +oText).getSelection() ;
	$("#" +oText).replaceSelection(range.text + "\n[" + strMod + "]\n") ;
}

function fnIPE_URL(oText){
	var range = $("#" +oText).getSelection() ;
	var url = prompt("Enter the URL", "") ;
	if (!url || url == "") return ;
	$("#" +oText).replaceSelection("[url " + url + " " + range.text + "]") ;
}

function fnIPE_InsertImg(oText, id, imgtype){
	var range = $("#" + oText).getSelection() ;
//	alert(oText) ;
	$("#" +oText).replaceSelection("[" + imgtype + " " + id + "]" + range.text) ;
}

function fnSendMail(n,p)
{
	var l ;
	l = p.length ;
	location.href = "Mailto:" + n + "@" + p.slice(2,l-4) ;
}

