function openWin(url,winName,w,h) {
	var features = 'width='+w+',height='+h+',innerWidth='+w+',innerHeight='+h+',scrollbars=no';
	window.open(url,winName,features);
}
function resizeWin(width,height) {
    var oj=self;
    oj.resizeTo(width,height);
    if(window.opera||document.layers){  //n4,o6,o7—p
      var w = oj.innerWidth;
      var h = oj.innerHeight;
    } else if(document.all){            //e4,e5,e6—p
      var w = oj.document.body.clientWidth;
      var h = oj.document.body.clientHeight;
    } else if(document.getElementById){ //n6,n7,m1,s1—p
      var w = oj.innerWidth;  
      var h = oj.innerHeight;
    }
    if(width!=w||height!=h){
      oj.resizeBy((width-w),(height-h));
      if(document.layers) oj.location.reload(0);
    }
    oj.focus()  ; 
}

