
function newWindow(url) {

 var newwin = window.open(url,'hege','width=700,height=500,scrollbars=yes,left=50,top=50,toolbar=yes,location=yes,resizable=yes');
 newwin.focus();
}

