// Deativieren der Enter Taste
function dontenter(event) {
	if (event.keyCode == 13)
	{ return false; }
	return false;
}

// Ein- und Ausblenden der SubMenu Items
function showhide(name) {
	var sm = document.getElementById(name);
	sm.style.display = (sm.style.display == 'block') ? 'none' : 'block';
}

function ajaxshow(name) {
	new Effect.toggle(name,'blind');
}

function showMB(vtitel,vid) {
	Modalbox.show('inc/showvideo.php?vid=' + vid + '&name=' + vtitel, {title: vtitel, width: 530, height:545});
}

function show_news(ntitel,pid) {
	Modalbox.show('inc/shownews.php?pid=' + pid, {title: ntitel, width: 595});
}

function showtools(url,ttitel,wd) {
	Modalbox.show('http://www.top10-charts.com/' + url, {title: ttitel, width: wd});
}

function copyit(theField) {
	var tempval=eval("document."+theField)
	tempval.focus()
	tempval.select()
	therange=tempval.createTextRange()
	therange.execCommand("Copy")
	window.alert("Der Link wurde erfolgreich in deine Zwischenablage kopiert!");
}