﻿function openWin(wndw, wdth, hght) {
    var openwin = wndw
    //var argset = "fullscreen=0,toolbar=0,status=0,location=0,menubar=0,scrollbars=1,titlebar=0,toolbar=0,width=" + wdth + ",height=" + hght
    newWin = window.open(openwin, "NewWindow", "location=0,fullscreen=0,toolbar=0,status=0,menubar=0,scrollbars=1,titlebar=0,toolbar=0,width=" + wdth + ",height=" + hght)
    newWin.focus()
}