function wSize() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    // alert("nonIE");
	myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    // alert("IE6");
	myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
   // alert("IE4");
	myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  var latime=myWidth;
  var calcul=(latime-780)/2;
  if (calcul<0) {
  calcul=0-calcul;
  }
  
  //alert(calcul);
	//document.write('<DIV id=divContainer1 style="Z-INDEX: 1; TOP: 410px; LEFT: '+calcul+'px; CLIP: rect(0px 455px 180px 0px); POSITION: absolute;HEIGHT:185px;">');
return(latime);
}

function doWnd(jId){ 
//---------------------------
	//alert('d');
	window.open('formnews.php?st='+jId,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top=100,left=150,width=720,height=420');


}
