function delcontent($id, $vorgabe) {
	if ($($id).value == $vorgabe) {
		$($id).value = "";
	}
}
function checkcontent($id, $text) {
	if ($($id).value == "") {
		$($id).value = $text;
	}
}

function specialsBlaettern(richtung) {
	new Ajax.Request("/ajax.php?aktion=specialsBlaettern&richtung="+richtung, 
	{
		method: 'get',
		onSuccess: specialEinbleden,
		onFailure: function() { alert('Something went wrong...') }
	} );
}

function specialEinbleden(transport) {
	var response = transport.responseText;
	var inhalt = response.evalJSON();

	
	$('specials_titel').innerHTML = inhalt.titel;
	if (inhalt.bildpfad == "") {
	        $('specials_bild').src = "/basics/images/leer.gif";
	} else {
		$('specials_bild').src = inhalt.bildpfad;
	}
	$('specials_teaser').innerHTML = '<p>'+inhalt.teaser+' <a class="mehr" href="/'+inhalt.sprache+'/box_details.php?id='+inhalt.id+'&typ='+inhalt.typ+'&sprache='+inhalt.sprache+'">mehr</a></p>';
}


function angeboteBlaettern(richtung) {
	new Ajax.Request("/ajax.php?aktion=angeboteBlaettern&richtung="+richtung, 
	{
		method: 'get',
		onSuccess: angebotEinblenden,
		onFailure: function() { alert('Something went wrong...') }
	} );
}

function angebotEinblenden(transport) {
	var response = transport.responseText;
	var inhalt = response.evalJSON();

	
	$('angebote_titel').innerHTML = inhalt.titel;
	if (inhalt.bildpfad == "") {
	        $('angebote_bild').src = "/basics/images/leer.gif";
	} else {
		$('angebote_bild').src = inhalt.bildpfad;
	}
	$('angebote_teaser').innerHTML = '<p>'+inhalt.teaser+' <a class="mehr" href="/'+inhalt.sprache+'/box_details.php?id='+inhalt.id+'&typ='+inhalt.typ+'&sprache='+inhalt.sprache+'">mehr</a></p>';
}


function oeffnefenster (url) {
 	fenster=window.open(url, "fenster1", "width=670,height=500,status=yes,scrollbars=yes,resizable=yes");
 	fenster.focus();
 	return false;
}
