
function openmicro(url,b,h) {
    
    var sattitel = 'sat';
    sattitel = sattitel.concat(Math.round(Math.random()*1000000));
    sat=window.open(url,sattitel,'width='+b+',height='+h+',dependent,scrollbars=1,resizable=no,status=no,left=150,top=120');
	
    if (sat) {
            
        sat.focus();
            
    }

}