var newWND;

function NewWindow_NoScroll(url, height, width)
 {
 values = "width=" + width + ", height=" + height + ", scrollbars=no";

 newWND = window.open(url, "newWND_NS", values);
 newWND.focus();
 }