function OpenLinkWindow(url) {
theWindow = window.open(url, "LinkWindow", "directories=yes, location=yes, menubar=yes, scrollbars=yes, status=yes, toolbar=yes, resizable=yes, width=700, height=500");
if (window.focus) theWindow.focus();
}