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

function popupDatenschutz(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=800,height=600')
}

function openWin(titel,img,alt) {
	var image = new Image();
	image.onload = function () {
		var h = image.height;
		var w = image.width;
                
		popup = open("", "","width="+w+",height="+h+",status=no,toolbar=no,menubar=no");
			popup.document.open();
			popup.document.write("<html><head><title>"+titel+"</title></head><body style=\"padding:0px 0px 0px 0px; margin:0px 0px 0px 0px;\">");
			popup.document.write("<a href=\"JavaScript:window.close()\"><img src=\""+img+"\" alt=\""+alt+"\" border=\"0\"></a>");
			popup.document.write("</body></html>");
			popup.document.close();  
	}
	image.src = img;
}

$(document).ready(function(){
	$("#example > ul").tabs();
});
