/**
 * klabo.js
 *
 * per oginoknauss.org v3
 *
 */

/* GET URL IN NEUE WINDOW */
function gethaturl(url)
{
//	alert(url);
	window.open("http://"+url,"_blank");
}

/* SEND MAIL () */
function mailto(mail)
{
	window.location = "mailto:"+mail;
}

/* FORCE DOWNLOAD */
function downloadfile(filenamen)
{
	window.location = "php/dl.php?file="+filenamen;
}