function Refresh5() {
	setTimeout("window.location.reload();",300000);
}

function get(url,Message,Ask,what,Ask2,url2) {
	var where_to= confirm(Ask);
	if(where_to == false)  {
		alert(Message);
	} else {
		if(what) {
			var where_go= confirm(Ask2);
			if(where_go == true) {
				location.href = url2;
			} else {
				location.href = url;
			}
		} else {
			location.href = url;
		}
	}
}

function getLogin(loginaction) {
	if (loginaction == 'logout') {
		window.location.href='/index.asp?action=logout';
	} else {
		win = new Window({className: "mac_os_x", title: "Login", top:200, left:150, width:450, height:150, url: "/content/member/login_xp.asp?", destroyOnClose: true, recenterAuto:true, resizable:false, minimizable:false, maximizable:false});
		win.show();
	}
}

function getWindow(title,url,breite,hoehe) {
		topvalue = 200;
		leftvalue = 150;
		win = new Window({className: "mac_os_x", title: title, top: topvalue, left: leftvalue, width:breite, height:hoehe, url: url, destroyOnClose: true, recenterAuto:true, resizable:false, minimizable:false, maximizable:false});
		win.show();
}