// Simple open window script
function OpenWindow(theURL,winName,features) { 
  openWindow = window.open(theURL,winName,features);
  //window.open(theURL,winName,features);
  openWindow.focus();
}

