
function OpenWin(url,name,width,height,scrol)
{
  var scrl = 'no';
  if(scrol==1) scrl = 'yes';

  window.open(url,name,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scrl+",resizable=yes,width="+width+",height="+height+"");
}
