//  New Window with Default Browser Settings

function openWin(URL) {
   newWindow = window.open(URL, "newWin");
   newWindow.focus();
}