// JavaScript Document

//

function winOpen(soub,w,h)
{
  var start = window.open(soub,'open','width='+ w +',height=' + h +',top=10,left=10');
	start.focus();
}

// end of document
