function openWin(wndw,wdth,hght)
{
 //var openwin = '<%=rootURL%>' + wndw
 var openwin = wndw
 var argset = 'fullscreen=no,toolbar=no,location=no,scrollbars=yes,width=' + wdth + ',height=' + hght
 newWin = window.open(openwin,'NewWindow',argset)
 newWin.focus()
}
