/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */

winWidth = 720; // sets a default width for browsers who do not understand screen.width below
winheight = 54
0; // ditto for height

if (screen){ // weeds out older browsers who do not understand screen.width/screen.height
winWidth = screen.width;
winHeight = screen.height;
}

// this function calls a popupWindow where
// win is the page address i.e. '../page.htm'

function popupWindow(win){

newWindow = window.open(win,'newWin','titlebar=no,toolbar=no,location=no,scrollbars=no,resizable= no,width=720,height=540,left=0,top=0,border=0');
newWindow.focus();
}
