
function link_oeffnen(linkstr)
	{
		if(linkstr.substr(0,4)=="www.") {
			linkstr="http://"+linkstr	
		}
		if(linkstr.substr(0,5)=="http:") {
			window.open(linkstr,"","");
		}else{
			document.location.href=linkstr;
		}
	}


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

function print_site(content_id,sprache){
	window.open("/include/print_site.php?content_id="+content_id+"&sprache="+sprache,'Printversion','menubar=yes,toolbar=yes,scrollbars=yes,width=600,height=550');
}

