function openWindow(url, height, width)
{ 
    newWindow = window.open(url, "nWin" + Math.round(Math.random(80) * 1000000).toString(), "width="+width+",height="+height+", scrollbars=yes, resizable")
    newWindow.focus();
}
