function openNewWindow(URLtoOpen) {
 var windowName = "privacy";
 var windowFeatures = "width=350,height=400,top=125,left=200,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no";
 newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
}
