// JavaScript Document
function getEl(id) {
	if (document.getElementById){
  		var el = document.getElementById(id);
  	}
  	else if (document.all) {
		var el = document.all[id];
  	}
  	else if (document.layers) {
   		var el = document.layers[id];
  	} else {
		return false	
	}
	return el;
}

function player() {
open("/presspr/mediaplayer/novaplayer/small_player.php" , "player" , "toolbar=no,height=400,width=750,menubar=no,location=no,status=no");
}

function toggleEditor(id) {
	var elm = document.getElementById(id);

	if (tinyMCE.getInstanceById(id) == null)
		tinyMCE.execCommand('mceAddControl', false, id);
	else
		tinyMCE.execCommand('mceRemoveControl', false, id);
}

function decision(message, url) {
	if(confirm(message)) location.href = url;
}