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