// JavaScript Document
function big_img(image){
	window.open("/include/big_img.php?image="+image+"",'Image','width=500,height=500');
}

function url(v){
	if(v.substr(0,7)=='http://'){
		window.open(v,'goto');
	}else{
		document.location.href=v;
	}
}

function pressetext(content_id){
	window.open("/include/pressetext.php?content_id="+content_id+"",'Pressetext','menubar=yes,toolbar=yes,scrollbars=yes,width=600,height=550');
}
function siegerweine(content_id){
	window.open("/include/siegerweine.php",'Siegerweine','menubar=yes,toolbar=yes,scrollbars=yes,width=400,height=550');
}

function is_dezimal(feld){
	if(!feld.value.match(/^\d+$/) && feld.value!=""){
		alert("Bitte geben Sie nur Zahlen ein!");
		feld.value = "";
		feld.focus();
		return false;
	}
}