// JavaScript Document
/*function jumpURL(url, name, value, inter) {
	if (value != '') {
		if (inter == 1 && value != 0) {
			document.location.href = url + "?" + name + "=" + value;
		} else {
			if (value == 0) {
				document.location.href = url;
			} else {
				document.location.href = url + "&" + name + "=" + value;
			}
		}
	}
}*/
function jumpURL(url) {
	//alert(url);
	document.location.href = window.location.protocol + "//" + window.location.hostname + "/" + url;	
}


function openPopup(url) {
 alert(url);
 //fenster = window.open(url, "fenster1", "width=600,height=400,status=yes,scrollbars=yes,resizable=yes");
 //fenster.focus();
}
