// Tim McAdoo - 5/5/2000
// This will process pop-up windows

//Attack Scenarios
var s1  = "http://www.hardenedstructures.com/scenarios/Scenario1.htm"
var s2  = "http://www.hardenedstructures.com/scenarios/Scenario2.htm"
var s3  = "http://www.hardenedstructures.com/scenarios/Scenario3.htm"
var s4  = "http://www.hardenedstructures.com/scenarios/Scenario4.htm"
var s5  = "http://www.hardenedstructures.com/scenarios/Scenario5.htm"
var s6  = "http://www.hardenedstructures.com/scenarios/Scenario6.htm"
var s7  = "http://www.hardenedstructures.com/scenarios/Scenario7.htm"
var s8  = "http://www.hardenedstructures.com/scenarios/Scenario8.htm"
var s9  = "http://www.hardenedstructures.com/scenarios/Scenario9.htm"
var s10 = "http://www.hardenedstructures.com/scenarios/Scenario10.htm"
var s11 = "http://www.hardenedstructures.com/scenarios/Scenario11.htm"
var s12 = "http://www.hardenedstructures.com/scenarios/Scenario12.htm"
var s13 = "http://www.hardenedstructures.com/scenarios/Scenario13.htm"
var s14 = "http://www.hardenedstructures.com/scenarios/Scenario14.htm"
var s15 = "http://www.hardenedstructures.com/scenarios/Scenario15.htm"

function PopUp (href, title)//, width, height)
  // 1. href is the URL to open
  // 2. title is the name of the window (no spaces!)
  // 3. width & height are dimensions
  // assume no toolbar
  {  
  
    var twin = window.open (href, title, "menubar=yes,toolbar=no,scrollbars=yes,resizable=no");//,width=" + width + ",height=" + height);
    
    twin.location.href = href;
    
  }  

