// JavaScript Document

function wopen(link,titel,wi,he,sc,re) {

var screentop,screenleft;

screenleft = 10;
screentop = 10;

      wincom = window.open(link ,titel,"toolbar=0,"+",left="+screenleft+",top="+screentop+",directories=0,status=0,menubar=0,scrollbars="+sc+",resizable="+re+",width="+wi+",height="+he);
      wincom.focus() ;
}
