function toggleEditor(id) {
	if (tinyMCE.getInstanceById(id) == null)
		tinyMCE.execCommand('mceAddControl', false, id);
	else
		tinyMCE.execCommand('mceRemoveControl', false, id);
}
function ask(str){
var ask = confirm(str);
if(ask) return true;
else return false;
}
function show(id)
{
    document.getElementById(id).style.display='block';
}
