//    Created with the CoffeeCup HTML Editor 2008     
//             http://www.coffeecup.com/              
//          Brewed on 7/11/2010 12:43:24 AM           
      if (self.screen) {         // for NN4 and IE4
        width = screen.width
        height = screen.height
    // Testing this first prevents firing the slow Java of NN4
      }
      else if (self.java) {   // for NN3 with enabled Java
        var jkit = java.awt.Toolkit.getDefaultToolkit();
        var scrsize = jkit.getScreenSize();
          width = scrsize.width;
          height = scrsize.height;
      }
      else {
        width = height = '?' // N2, E3, N3 w/Java off, probably Opera and WebTV
      }
	  //document.write("<br />Your Screen Resolution is:&nbsp;&nbsp;");
      //document.write(width +"pixels &#215; "+ height +"pixels.");
      //based on the above results
	  
MaxScreenWidth = 1920;
//document.write(" Max screen width is:&nbsp;&nbsp;"+ MaxScreenWidth +"pixels.");
//document.write("<br />Since your screen width is:&nbsp;&nbsp;"+ width +"pixels, your % of "+ MaxScreenWidth +"pixels,<br />the largest screen width being tested for is:&nbsp;&nbsp;"+ 100*(width/MaxScreenWidth) +"%<br />");
if (width>0) {
multiplier = (width/MaxScreenWidth)
//document.write("Your multiplier is:&nbsp;&nbsp;"+ multiplier +".");
multipliedWidth = multiplier * 250;
//multipliedHeight = multiplier * 250;
//document.write("Test"+ round(multipliedWidth); +"Test2");
document.write("<p><script style=\"z-index: 2;\" type=\"text/javascript\">new inter_slide(slides, multipliedWidth, multipliedWidth);</script></p>");
//document.write("");
//<img src=\"images/WomenInFocus2010Logo_219sq.png\" style=\"width: "+ multipliedWidth +"px; height: auto; text-decoration: none; border: 0 none;\" alt=\"Women In Focus logo\" /><br /><br />");
//document.write(multiplier);
//return multiplier;
}

