function openWindow(url, w, h) {
    newWindow = window.open(url, "fwin", "toolbar=no, menubar=yes, resizable=yes, location=no, directories=0, status=0, scrollbars=yes, width=" + w + ", height=" + h + ", top=10, left=10");
		newWindow.focus();
}

