function openit(sURL){
if  (navigator.appName == "Microsoft Internet Explorer"){
newwindow=open(sURL,"projektwin","scrollbars=yes,toolbar=no,directories=no, menubar=no, resizable=yes, status=no, left=30, top=30,width=710,height=700");
}
else{
newwindow=window.open(sURL,'projektwin','width=700,height=700,top=30,left=30,menubar=yes,scrollbars=yes,resizable=yes');
}
}


