//----------------------------------------------------------------
// PUTS SIZING RESTRICTIONS ON THE WINDOW ENABLING THE SCROLL BARS
function getViewportSize() {
 var size = [0, 0];
 if (typeof window.innerWidth != "undefined") {
 size = [window.innerWidth, window.innerHeight];
 }
 else if (typeof document.documentElement != "undefined" && typeof document.documentElement.clientWidth != "undefined" && document.documentElement.clientWidth != 0) {
 size = [document.documentElement.clientWidth, document.documentElement.clientHeight];
 }
 else {
 size = [document.getElementsByTagName("body")[0].clientWidth, document.getElementsByTagName("body")[0].clientHeight];
 }
 return size;
}
function createFullBrowserFlash() {
 swfobject.createCSS("html", "height:100%;");
 swfobject.createCSS("body", "height:100%;");
 swfobject.createCSS("#container", "margin:0; width:100%; height:100%; min-width:1000px; min-height:750px;");
 window.onresize = function() {
 var el = document.getElementById("container");
 var size = getViewportSize();
 el.style.width = size[0] < 1000 ? "900px" : "100%";
 el.style.height = size[1] < 750 ? "750px" : "100%";
 };
 window.onresize();
}

//---------------------
// LOADS FLASH ELEMENTS
var flshvrs = {
 initialURL: escape(document.location)
};
var prms = {};
prms.quality = "best";
prms.scale = "showall";
prms.wmode = "transparent";
prms.allowfullscreen = "true";
prms.menu = "false";
prms.bgcolor = "#000000";
prms.allowscriptaccess = "always";
prms.allownetworking = "all";

var attrbts = {};

swfobject.embedSWF("/_media/_interactive/09SRN138_Framework(CS3).swf", "content", "100%", "100%", "9.0.0", false, flshvrs, prms, attrbts);
if (swfobject.hasFlashPlayerVersion("9.0.0")) {
 swfobject.addDomLoadEvent(createFullBrowserFlash);
}