function confirmDelete(){
	return confirm("Do you want to delete this video in the playlist ?\nThe file will be still available on the server.");
}

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

function prefillClear(field) {
	if (field.defaultValue==field.value) {
			field.value = '';	
	}
	
	else if(field.value == '') {
			field.value = field.defaultValue;
	}
}