function IsMovie() {
		document.project_add.episodenanzahl.value = 'mov';
}

function RLSIsMovie() {
		document.release_edit.ep_nr.value = 'mov';
}

function bbcode_insert(sign) {
        document.form.form_content.value += sign;
}

function SiteJump(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function showrls(show){
	var oMenu = document.getElementById(show);

	if (oMenu.style.display != "none"){
		 oMenu.style.display = "none";
	} else {
		 oMenu.style.display = "block";
	}
}

function selectThis(src) {
			document.selection.clear;
			txt = eval(src +".innerText");
			theObj = document.all(txt);
			txtRange = document.body.createTextRange();
			txtRange.moveToElementText(eval(src));
			txtRange.select();
			txtRange.execCommand("RemoveFormat");
			txtRange.execCommand("Copy");
			alert(txt + " wurde in die Zwischenablage kopiert");
}

function an()
{document.getElementById('dynDiv').style.visibility = 'visible';}

function aus()
{document.getElementById('dynDiv').style.visibility = 'hidden';}