
function submitForm(id)
{
	document.getElementById(id).submit();
}

function setFocus() 
{
	obj = document.getElementById('focusitem');
	
	if(obj)
		obj.focus();
}

function getYoutubeUrl()
{
	titel = document.getElementById('focusitem').value;

	target = 'http://www.youtube.com/results?search_query='+titel;
	window.open(target, 'Youtube');
}

function GetFileName(FromElement, ToElement, FormName)
{
	if(document.forms[FormName].elements[ToElement].value.length > 0)
		return;
	var sPath = document.forms[FormName].elements[FromElement].value;
	if(sPath.length == 0)
		alert('Bitte wählen Sie zuerst eine Datei aus');
	if(sPath.lastIndexOf('\\') > 0)
	{	
		var sTitelExt = sPath.substr(sPath.lastIndexOf('\\')+1);
		var sTitel = sTitelExt.slice(0,sTitelExt.lastIndexOf('.'));
		document.forms[FormName].elements[ToElement].value = sTitel;
	}
}

function checkEnter(obj)
{
	if(event.keyCode=='13')
		obj.form.submit();
}


