/*
developed by webasit.de
contact: info@webasit.de
(c) 2005
*/

function newbrowser(url,name,width,height) {

var NeuesFenster;

 NeuesFenster = open( "" , name , "toolbar=no,titlebar=no,scrollbars=no,personalbar=no,status=no,statusbar=no,location=no,menubar=no,height=" + height + ",width=" + width + ",left=70,top=50,screenX=0,screenY=0,resizable=no");
 NeuesFenster.location.href = url;
 NeuesFenster.focus();

}
