// getPageSize()
// Returns array with page width, height and window width, height
// Core code from - quirksmode.org
// Edit for Firefox by pHaez
function getPageSize() {

	var xScroll, yScroll;

	if (window.innerHeight && window.scrollMaxY) {	
		xScroll = document.body.scrollWidth;
		yScroll = window.innerHeight + window.scrollMaxY;
	} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
		xScroll = document.body.scrollWidth;
		yScroll = document.body.scrollHeight;
	} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
		xScroll = document.body.offsetWidth;
		yScroll = document.body.offsetHeight;
	}

	var windowWidth, windowHeight;
	if (self.innerHeight) {	// all except Explorer
		windowWidth = self.innerWidth;
		windowHeight = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
		windowWidth = document.documentElement.clientWidth;
		windowHeight = document.documentElement.clientHeight;
	} else if (document.body) { // other Explorers
		windowWidth = document.body.clientWidth;
		windowHeight = document.body.clientHeight;
	}	

	// for small pages with total height less then height of the viewport
	if(yScroll < windowHeight){	pageHeight = windowHeight; }
	else { pageHeight = yScroll; }

	// for small pages with total width less then width of the viewport
	if(xScroll < windowWidth){ pageWidth = windowWidth;	}
	else { pageWidth = xScroll; }

	arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight) 
	return arrayPageSize;
}
//================================================================================


/*================================================================================
File: riaJS.js
Date Created: 3/2/2009
Created By: JMS
Date Modified:  3/9/2009
Modified By: JMS
Description: This script provides a collection of functions that can be used for
			 nice Rich Internet Application Development using JavaScript.
Mods: Added functionality for custom fadeIn and fadeOut times
	  Added the ability to execute dynamic scripts during AJAX response - IMPORTANT NOTE: see evalHTML() function below for details
Developer Notes: For examples of how to use this script see the code samples at the bottom of this page under "EXAMPLES"
================================================================================*/


//==================== AJAX CODE ====================

function ajaxRequest()
{
	var activexmodes=["Msxml2.XMLHTTP", "Microsoft.XMLHTTP"] // activeX versions to check for in IE

	if (window.ActiveXObject) // Test for support for ActiveXObject in IE first (as XMLHttpRequest in IE7 is broken)
	{
		for (var i = 0; i < activexmodes.length; i++)
		{
			try
			{
				return new ActiveXObject(activexmodes[i]);
			}
			catch(e)
			{
				// suppress error
			}
		}
	}
	else if (window.XMLHttpRequest)
	{
		return new XMLHttpRequest(); // if Mozilla, Safari etc
	}
	else{ return false; }
}

function sendAjaxRequest(ajaxDivID, method, url, parameters, loadingImg, executeScript, showAjaxError, useAsync)
{
    if(showAjaxError == false){} else { showAjaxError = true; }
    if(useAsync == false){} else { useAsync = true; }
	var newRequest = new ajaxRequest();

	newRequest.onreadystatechange = function()
	{
		if (newRequest.readyState == 4)
		{
			if (newRequest.status == 200 || window.location.href.indexOf("http") == -1)
			{
			    document.getElementById(ajaxDivID).innerHTML = newRequest.responseText;
				if(executeScript){ evalHTML(newRequest.responseText); }
			}
			else
			{
			    if(showAjaxError) { document.getElementById(ajaxDivID).innerHTML = "An error has occurred making the request"; }
				else { document.getElementById(ajaxDivID).innerHTML = ""; }
				//alert("An error has occurred making the request");
			}
		}
		else
		{
		    if(document.getElementById(ajaxDivID) != null)
		    {
		        if (loadingImg != "" && loadingImg != null) { document.getElementById(ajaxDivID).innerHTML = "<div style=\"font-weight:bold;\">Loading<br /><img border=\"0\" src=\"" + loadingImg + "\" alt=\"Loading...\" title=\"Loading...\" style=\"margin:5px;\" /></div>"; }
			    else{ document.getElementById(ajaxDivID).innerHTML = "Loading..."; }
			}
		}
	}

	if(method == "POST")
	{
		newRequest.open("POST", url, useAsync);
		newRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
		parameters += "&sid=" + Math.random();
		newRequest.send(parameters);
		if(!useAsync) {
		    if (newRequest.status == 200 || window.location.href.indexOf("http") == -1)
		    {
		        document.getElementById(ajaxDivID).innerHTML = newRequest.responseText;
			    if(executeScript){ evalHTML(newRequest.responseText); }
		    }
		    else
		    {
		        if(showAjaxError) { document.getElementById(ajaxDivID).innerHTML = "An error has occurred making the request"; }
			    else { document.getElementById(ajaxDivID).innerHTML = ""; }
			    //alert("An error has occurred making the request");
		    }
		}
	}
	else if(method == "GET")
	{
		newRequest.open("GET", url + "?" + parameters + "&sid=" + Math.random(), useAsync);
		newRequest.send(null);
		if(!useAsync) {
		    if (newRequest.status == 200 || window.location.href.indexOf("http") == -1)
		    {
		        document.getElementById(ajaxDivID).innerHTML = newRequest.responseText;
			    if(executeScript){ evalHTML(newRequest.responseText); }
		    }
		    else
		    {
		        if(showAjaxError) { document.getElementById(ajaxDivID).innerHTML = "An error has occurred making the request"; }
			    else { document.getElementById(ajaxDivID).innerHTML = ""; }
			    //alert("An error has occurred making the request");
		    }
		}
	}
}

// JMS: IMPORTANT - BE VERY CAREFUL WHEN USING THIS FUNCTION
// EXECUTING SCRIPTS THIS WAY IS NOT RECOMENDED AND CAN BE A SECURITY RISK
// THIS SCRIPT SHOULD ***NEVER*** ACCEPT USER INPUT
function evalHTML(htmlCode) {
	if(navigator.appName == "Microsoft Internet Explorer"){
		var scriptText = htmlCode.split(/\<\/?script[^\<]*\>/i);
		for(var i in scriptText){
			try{ eval(scriptText[i]); }
			catch(e){}
		}
	}
	else
	{
		var piece, scriptText = htmlCode.split(/<script/);
		scriptText.shift(); // throw away anything before the first script tag
		for (var i=0, len = scriptText.length; i < len; i++ ) {
			(piece = scriptText[i].split(/>/)).shift();
			try { eval(piece.join('>').split('</script>').shift()); }
			catch(e){}
		}
	}
}

//==================== END AJAX CODE ====================



//==================== EFFECT FADER CODE ====================

var fadeTimeDefault = 250;
var fadeTime = fadeTimeDefault;
var timeRemaining;

function fadeIn(faderDivID, customFadeTime)
{
	if(document.getElementById(faderDivID).style.width.toString() == "")
	{ document.getElementById(faderDivID).style.width= "100%"; }

	Math.abs(customFadeTime) > 0 ? fadeTime=customFadeTime : fadeTime=fadeTimeDefault;
	timeRemaining = fadeTime;
	setTimeout("animateFade(" + new Date().getTime() + ",'" + faderDivID + "', 'in')", 0);
}

function fadeOut(faderDivID, customFadeTime)
{
	if(document.getElementById(faderDivID).style.width.toString() == "")
	{ document.getElementById(faderDivID).style.width= "100%"; }

	Math.abs(customFadeTime) > 0 ? fadeTime=customFadeTime : fadeTime=fadeTimeDefault;
	timeRemaining = fadeTime;
	setTimeout("animateFade(" + new Date().getTime() + ",'" + faderDivID + "', 'out')", 0);
}

function removeFilter(faderDivID)
{
	document.getElementById(faderDivID).style.filter = "";
	disableClicks = false;
}

function animateFade(lastTick, faderDivID, fadeState)
{
	var curTick = new Date().getTime();
	var elapsedTicks = curTick - lastTick;

	if(timeRemaining <= elapsedTicks)
	{
		document.getElementById(faderDivID).style.opacity = fadeState == "in" ? "1" : "0";
		document.getElementById(faderDivID).style.filter = "alpha(opacity = " + (fadeState == "in" ? "100" : "0") + ")";
		if(fadeState == "in"){ setTimeout("removeFilter('" + faderDivID + "')", fadeTime / 2); }
		return;
	}

	timeRemaining -= elapsedTicks;
	var newOpVal = timeRemaining / fadeTime;
	if(fadeState == "in"){ newOpVal = 1 - newOpVal; }

	document.getElementById(faderDivID).style.opacity = newOpVal;
	document.getElementById(faderDivID).style.filter = "alpha(opacity = " + (newOpVal * 100) + ")";

	animateFadeTimer = setTimeout("animateFade(" + curTick + ", '" + faderDivID + "', '" + fadeState + "')", 0);
}

//==================== END EFFECT FADER CODE ====================




//==================== EFFECT BACKGROUND FADER CODE ====================

function useWindowFadeBackground() {
	var windowFadePosition = "fixed";
	if(navigator.appVersion.match("MSIE 6.0") != null){ windowFadePosition = "absolute"; }
	document.write('<div id="divWindowFadeBackground" style="width:100%; height:0px; background-color:#000; position:' + windowFadePosition + '; left:0px; top:0px; opacity:.8; filter: alpha(opacity=80); display:none; z-index:10000;" onclick="hideWindowFadeBackground();"></div>');
	document.write('<div id="divWindowFadeContent" style="background-color:#000; position:' + windowFadePosition + '; left:0px; top:0px; width:0px; height:0px; margin-left:0px; margin-top:0px; display:none; z-index:10001;"></div>');
}

function showWindowFadeBackground(opacity, divWidth, divHeight, divInnerHTML, js) {

	resetWindowSizeTimer = null;
	windowFadeTimer = null;

	clearTimeout(windowFadeTimer);
	clearInterval(resetWindowSizeTimer);

	end_opacity = opacity; //end opacity, 25 = 25%, 50 = 50%, 100 = 100%, etc.
	increase_opacity_by = 20; //how much to increase by each time the timeout ends
	windowFadeTimeout = 20; //timeout in miliseconds, 0 = instant fade-out

	win = document.getElementById('divWindowFadeBackground');
	wincontent = document.getElementById('divWindowFadeContent');

	var arrayPageSize = getPageSize();
	win.style.width = document.documentElement.clientWidth;
	win.style.height = (arrayPageSize[1] + 'px');

	wincontent.style.width = divWidth + 'px';
	wincontent.style.height = divHeight + 'px';
	wincontent.style.marginLeft = -(divWidth/2) + 'px';
	wincontent.style.marginTop = -(divHeight/2) + 'px';
	wincontent.innerHTML = '<div style="padding:5px 8px 5px 0px;" align="right"><a href="javascript:hideWindowFadeBackground();" style="color:#FFF; font-weight:bold; font-family:Arial; font-size:16pt;">X</a></div>' + divInnerHTML;

	eval(js);

	setWindowFadeBackgroundInnerDivSizeLocation();

	current_opacity = 0;

	if(windowFadeTimeout > 0) {
		current_opacity = 0;

		win.style.opacity = current_opacity / 100;
		win.style.filter = "alpha(opacity=" + current_opacity + ")";
		win.style.display = 'block';
		wincontent.style.display = 'none';

		windowFadeTimer = setTimeout("increaseWindowFadeBackgroundOpacity()", 0);
	}
	else {
		win.style.opacity = end_opacity / 100;
		win.style.filter = "alpha(opacity=" + end_opacity + ")";
		win.style.display = 'block';
		wincontent.style.display = 'block';
	}
}

var origWidth = 0;
var origHeight = 0;
function setWindowFadeBackgroundInnerDivSizeLocation() {
	windowTop = document.documentElement.scrollTop;
	windowLeft = document.documentElement.scrollLeft;
	if(navigator.appName != "Microsoft Internet Explorer"){
		windowTop = window.pageYOffset;
		windowLeft = window.pageXOffset;
	}
	windowWidth = document.documentElement.clientWidth;
	windowHeight = document.documentElement.clientHeight;

	if(navigator.appVersion.match("MSIE 6.0") != null){
		win.style.width = windowWidth;
		wincontent.style.top = (((windowHeight/2) + windowTop) - 20) + "px";
		wincontent.style.left = ((windowWidth/2) + windowLeft) + "px";
	}
	else if(origWidth != windowWidth || origHeight != windowHeight){
		win.style.width = windowWidth;
		wincontent.style.top = ((windowHeight/2) - 20) + "px";
		wincontent.style.left = ((windowWidth/2) + windowLeft) + "px";
		origWidth = windowWidth;
		origHeight = windowHeight;
	}
}

function increaseWindowFadeBackgroundOpacity() {
	current_opacity += increase_opacity_by;

	win.style.opacity = current_opacity / 100;
	win.style.filter = "alpha(opacity=" + current_opacity + ")";

	if(current_opacity < end_opacity) {	windowFadeTimer = setTimeout("increaseWindowFadeBackgroundOpacity()", windowFadeTimeout); }
	else {
		wincontent.style.display = 'block';
		win.style.opacity = "." + end_opacity;
		win.style.filter = "alpha(opacity=" + end_opacity + ")";
		resetWindowSizeTimer = setInterval('setWindowFadeBackgroundInnerDivSizeLocation()', 250);
		//setWindowFadeBackgroundInnerDivSizeLocation(divWidth, divHeight);
	}
}

function hideWindowFadeBackground() {
	wincontent.style.display = 'none';

	current_opacity -= increase_opacity_by;
	win.style.opacity = current_opacity / 100;
	win.style.filter = "alpha(opacity=" + current_opacity + ")";

	if(current_opacity > 0) { windowFadeTimer = setTimeout("hideWindowFadeBackground()", windowFadeTimeout); }
	else {
		win.style.display = 'none';
		win.style.opacity = 0;
		win.style.filter = "alpha(opacity=" + 0 + ")";
		clearTimeout(windowFadeTimer);
	}

	clearInterval(resetWindowSizeTimer);
}

//==================== END EFFECT BACKGROUND FADER CODE ====================





//==================== FLASH EMBED CODE ====================
/* SWFObject v2.1 <http://code.google.com/p/swfobject/>
	Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
	This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("<script id=__ie_ondomload defer=true src=//:><\/script>");J=C("__ie_ondomload");if(J){I(J,"onreadystatechange",S)}}catch(q){}}if(h.webkit&&typeof K.readyState!=b){Z=setInterval(function(){if(/loaded|complete/.test(K.readyState)){E()}},10)}if(typeof K.addEventListener!=b){K.addEventListener("DOMContentLoaded",E,null)}R(E)}();function S(){if(J.readyState=="complete"){J.parentNode.removeChild(J);E()}}function E(){if(e){return }if(h.ie&&h.win){var v=a("span");try{var u=K.getElementsByTagName("body")[0].appendChild(v);u.parentNode.removeChild(u)}catch(w){return }}e=true;if(Z){clearInterval(Z);Z=null}var q=o.length;for(var r=0;r<q;r++){o[r]()}}function f(q){if(e){q()}else{o[o.length]=q}}function R(r){if(typeof j.addEventListener!=b){j.addEventListener("load",r,false)}else{if(typeof K.addEventListener!=b){K.addEventListener("load",r,false)}else{if(typeof j.attachEvent!=b){I(j,"onload",r)}else{if(typeof j.onload=="function"){var q=j.onload;j.onload=function(){q();r()}}else{j.onload=r}}}}}function H(){var t=N.length;for(var q=0;q<t;q++){var u=N[q].id;if(h.pv[0]>0){var r=C(u);if(r){N[q].width=r.getAttribute("width")?r.getAttribute("width"):"0";N[q].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(c(N[q].swfVersion)){if(h.webkit&&h.webkit<312){Y(r)}W(u,true)}else{if(N[q].expressInstall&&!A&&c("6.0.65")&&(h.win||h.mac)){k(N[q])}else{O(r)}}}}else{W(u,true)}}}function Y(t){var q=t.getElementsByTagName(Q)[0];if(q){var w=a("embed"),y=q.attributes;if(y){var v=y.length;for(var u=0;u<v;u++){if(y[u].nodeName=="DATA"){w.setAttribute("src",y[u].nodeValue)}else{w.setAttribute(y[u].nodeName,y[u].nodeValue)}}}var x=q.childNodes;if(x){var z=x.length;for(var r=0;r<z;r++){if(x[r].nodeType==1&&x[r].nodeName=="PARAM"){w.setAttribute(x[r].getAttribute("name"),x[r].getAttribute("value"))}}}t.parentNode.replaceChild(w,t)}}function k(w){A=true;var u=C(w.id);if(u){if(w.altContentId){var y=C(w.altContentId);if(y){M=y;l=w.altContentId}}else{M=G(u)}if(!(/%$/.test(w.width))&&parseInt(w.width,10)<310){w.width="310"}if(!(/%$/.test(w.height))&&parseInt(w.height,10)<137){w.height="137"}K.title=K.title.slice(0,47)+" - Flash Player Installation";var z=h.ie&&h.win?"ActiveX":"PlugIn",q=K.title,r="MMredirectURL="+j.location+"&MMplayerType="+z+"&MMdoctitle="+q,x=w.id;if(h.ie&&h.win&&u.readyState!=4){var t=a("div");x+="SWFObjectNew";t.setAttribute("id",x);u.parentNode.insertBefore(t,u);u.style.display="none";var v=function(){u.parentNode.removeChild(u)};I(j,"onload",v)}U({data:w.expressInstall,id:m,width:w.width,height:w.height},{flashvars:r},x)}}function O(t){if(h.ie&&h.win&&t.readyState!=4){var r=a("div");t.parentNode.insertBefore(r,t);r.parentNode.replaceChild(G(t),r);t.style.display="none";var q=function(){t.parentNode.removeChild(t)};I(j,"onload",q)}else{t.parentNode.replaceChild(G(t),t)}}function G(v){var u=a("div");if(h.win&&h.ie){u.innerHTML=v.innerHTML}else{var r=v.getElementsByTagName(Q)[0];if(r){var w=r.childNodes;if(w){var q=w.length;for(var t=0;t<q;t++){if(!(w[t].nodeType==1&&w[t].nodeName=="PARAM")&&!(w[t].nodeType==8)){u.appendChild(w[t].cloneNode(true))}}}}}return u}function U(AG,AE,t){var q,v=C(t);if(v){if(typeof AG.id==b){AG.id=t}if(h.ie&&h.win){var AF="";for(var AB in AG){if(AG[AB]!=Object.prototype[AB]){if(AB.toLowerCase()=="data"){AE.movie=AG[AB]}else{if(AB.toLowerCase()=="styleclass"){AF+=' class="'+AG[AB]+'"'}else{if(AB.toLowerCase()!="classid"){AF+=" "+AB+'="'+AG[AB]+'"'}}}}}var AD="";for(var AA in AE){if(AE[AA]!=Object.prototype[AA]){AD+='<param name="'+AA+'" value="'+AE[AA]+'" />'}}v.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AF+">"+AD+"</object>";i[i.length]=AG.id;q=C(AG.id)}else{if(h.webkit&&h.webkit<312){var AC=a("embed");AC.setAttribute("type",P);for(var z in AG){if(AG[z]!=Object.prototype[z]){if(z.toLowerCase()=="data"){AC.setAttribute("src",AG[z])}else{if(z.toLowerCase()=="styleclass"){AC.setAttribute("class",AG[z])}else{if(z.toLowerCase()!="classid"){AC.setAttribute(z,AG[z])}}}}}for(var y in AE){if(AE[y]!=Object.prototype[y]){if(y.toLowerCase()!="movie"){AC.setAttribute(y,AE[y])}}}v.parentNode.replaceChild(AC,v);q=AC}else{var u=a(Q);u.setAttribute("type",P);for(var x in AG){if(AG[x]!=Object.prototype[x]){if(x.toLowerCase()=="styleclass"){u.setAttribute("class",AG[x])}else{if(x.toLowerCase()!="classid"){u.setAttribute(x,AG[x])}}}}for(var w in AE){if(AE[w]!=Object.prototype[w]&&w.toLowerCase()!="movie"){F(u,w,AE[w])}}v.parentNode.replaceChild(u,v);q=u}}}return q}function F(t,q,r){var u=a("param");u.setAttribute("name",q);u.setAttribute("value",r);t.appendChild(u)}function X(r){var q=C(r);if(q&&(q.nodeName=="OBJECT"||q.nodeName=="EMBED")){if(h.ie&&h.win){if(q.readyState==4){B(r)}else{j.attachEvent("onload",function(){B(r)})}}else{q.parentNode.removeChild(q)}}}function B(t){var r=C(t);if(r){for(var q in r){if(typeof r[q]=="function"){r[q]=null}}r.parentNode.removeChild(r)}}function C(t){var q=null;try{q=K.getElementById(t)}catch(r){}return q}function a(q){return K.createElement(q)}function I(t,q,r){t.attachEvent(q,r);d[d.length]=[t,q,r]}function c(t){var r=h.pv,q=t.split(".");q[0]=parseInt(q[0],10);q[1]=parseInt(q[1],10)||0;q[2]=parseInt(q[2],10)||0;return(r[0]>q[0]||(r[0]==q[0]&&r[1]>q[1])||(r[0]==q[0]&&r[1]==q[1]&&r[2]>=q[2]))?true:false}function V(v,r){if(h.ie&&h.mac){return }var u=K.getElementsByTagName("head")[0],t=a("style");t.setAttribute("type","text/css");t.setAttribute("media","screen");if(!(h.ie&&h.win)&&typeof K.createTextNode!=b){t.appendChild(K.createTextNode(v+" {"+r+"}"))}u.appendChild(t);if(h.ie&&h.win&&typeof K.styleSheets!=b&&K.styleSheets.length>0){var q=K.styleSheets[K.styleSheets.length-1];if(typeof q.addRule==Q){q.addRule(v,r)}}}function W(t,q){var r=q?"visible":"hidden";if(e&&C(t)){C(t).style.visibility=r}else{V("#"+t,"visibility:"+r)}}function g(s){var r=/[\\\"<>\.;]/;var q=r.exec(s)!=null;return q?encodeURIComponent(s):s}var D=function(){if(h.ie&&h.win){window.attachEvent("onunload",function(){var w=d.length;for(var v=0;v<w;v++){d[v][0].detachEvent(d[v][1],d[v][2])}var t=i.length;for(var u=0;u<t;u++){X(i[u])}for(var r in h){h[r]=null}h=null;for(var q in swfobject){swfobject[q]=null}swfobject=null})}}();return{registerObject:function(u,q,t){if(!h.w3cdom||!u||!q){return }var r={};r.id=u;r.swfVersion=q;r.expressInstall=t?t:false;N[N.length]=r;W(u,false)},getObjectById:function(v){var q=null;if(h.w3cdom){var t=C(v);if(t){var u=t.getElementsByTagName(Q)[0];if(!u||(u&&typeof t.SetVariable!=b)){q=t}else{if(typeof u.SetVariable!=b){q=u}}}}return q},embedSWF:function(x,AE,AB,AD,q,w,r,z,AC){if(!h.w3cdom||!x||!AE||!AB||!AD||!q){return }AB+="";AD+="";if(c(q)){W(AE,false);var AA={};if(AC&&typeof AC===Q){for(var v in AC){if(AC[v]!=Object.prototype[v]){AA[v]=AC[v]}}}AA.data=x;AA.width=AB;AA.height=AD;var y={};if(z&&typeof z===Q){for(var u in z){if(z[u]!=Object.prototype[u]){y[u]=z[u]}}}if(r&&typeof r===Q){for(var t in r){if(r[t]!=Object.prototype[t]){if(typeof y.flashvars!=b){y.flashvars+="&"+t+"="+r[t]}else{y.flashvars=t+"="+r[t]}}}}f(function(){U(AA,y,AE);if(AA.id==AE){W(AE,true)}})}else{if(w&&!A&&c("6.0.65")&&(h.win||h.mac)){A=true;W(AE,false);f(function(){var AF={};AF.id=AF.altContentId=AE;AF.width=AB;AF.height=AD;AF.expressInstall=w;k(AF)})}}},getFlashPlayerVersion:function(){return{major:h.pv[0],minor:h.pv[1],release:h.pv[2]}},hasFlashPlayerVersion:c,createSWF:function(t,r,q){if(h.w3cdom){return U(t,r,q)}else{return undefined}},removeSWF:function(q){if(h.w3cdom){X(q)}},createCSS:function(r,q){if(h.w3cdom){V(r,q)}},addDomLoadEvent:f,addLoadEvent:R,getQueryParamValue:function(v){var u=K.location.search||K.location.hash;if(v==null){return g(u)}if(u){var t=u.substring(1).split("&");for(var r=0;r<t.length;r++){if(t[r].substring(0,t[r].indexOf("="))==v){return g(t[r].substring((t[r].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A&&M){var q=C(m);if(q){q.parentNode.replaceChild(M,q);if(l){W(l,true);if(h.ie&&h.win){M.style.display="block"}}M=null;l=null;A=false}}}}}();
//==================== END FLASH EMBED CODE ====================





/*==================== EXAMPLES ====================
=================================================================================
AJAX - Just call sendAjaxRequest() and pass in the following perameters:
ajaxDivID - The id of the div tag that will display the results
method - Either GET or POST
url - The page that will handle the request, usually the server side code
parameters - Any number of perameters and their values, split by & - See example below
loadingImg (optional) - The location of a loading gif that you would like to use - defaults to the words Loading...
executeScript (optional) - Either true or false - This will allow for dynamic script execution during AJAX response
						   IMPORTANT NOTE - Be very careful if setting executeScript to true. See evalHTML() function for details
showAjaxError (optional) - Either true or false - Defaults to true - If set to false, in the event of an error no error message will be returned
useAsync (optional) - Either true or false - Defaults to true - If set to false, the XMLHttpRequest object to wait until the server request is completed before the next statement is executed

e.g. sendAjaxRequest("ajaxDivID", "POST", "showRecord.php", "var1=hello&var2=world", "../img/loader.gif");
=================================================================================


=================================================================================
FADER - Just call fadeIn() or fadeOut() and pass in the id of the div tag that will be faded in or faded out

e.g. fadeIn("faderDivID"); or fadeOut("faderDivID");
=================================================================================


=================================================================================
BACKGROUND FADER - First call useWindowFadeBackground(); Then call showWindowFadeBackground();
and pass in the backround opacity, width, height, the HTML code the object that will be displayed
NOTE: An optional parameter was added that allows you to send JavaScript code to be evaluated 
when showWindowFadeBackground() is called - use with caution!

e.g. <script type="text/javascript"> useWindowFadeBackground(); </script>
	 showWindowFadeBackground(50, 300, 200, '<img alt=\'\' src=\'img.jpg\' />', 'javascript code (optional)');
=================================================================================


=================================================================================
FLASH EMBED - Just call swfobject.embedSWF() and pass in the following perameters:
movie name
divID to add to
width
height
required version number
expressInstall.swf
flashvars (optional)
params (optional)
attributes (optional)

NOTE: Additional uses can be found at http://blog.deconcept.com/swfobject/

e.g. swfobject.embedSWF("myMovie.swf", "myDivID", "300", "120", "9.0.0", "location of file/expressInstall.swf", {var1:"hello",var2:"world"}, {wmode:"transparent"}, {id:"myFlash",name:"myFlash"});
=================================================================================
*/



