/*--window_open--*/

function WinOpn(url,wValue,hValue){
  newWin=window.open(url,'extra','width='+eval(wValue)+',height='+eval(hValue)+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1');
  newWin.resizeTo(eval(wValue),eval(hValue));
  newWin.focus();
}

