var htmlWindow;
var x;
var y;
function newWindow(htmlfile) {
htmlWindow = window.open(htmlfile, 'newWin', 'width=500,height=350,scrollbars=yes,resizable=yes')
htmlWindow.focus()


}

function newWindowL(htmlfile,x,y) {
htmlWindow = window.open(htmlfile, 'newWin', 'width=800,height=450,scrollbars=yes,resizable=yes')
htmlWindow.focus()
}
