
function NewWin(breite,hoehe,url,name,scrolling){

var win = window.open(url,name,"toolbar=0,width="+breite+",height="+hoehe+",location=0,directories=0,status=0,menubar=0,scrollbars="+scrolling+",resizable=0,copyhistory=0");
win.focus();

}

function GoTo(url){

if (url != '')
{
location.href = url;
}

}
