function isEmailAddr(email){var result=false;var theStr=new String(email);var index=theStr.indexOf("@");if(index>0){var pindex=theStr.indexOf(".",index);if((pindex>index+1)&&(theStr.length>pindex+1))result=true}return result}function validRequired(formField,fieldLabel){var result=true;if(formField.value==""){alert('Please enter a value for the "'+fieldLabel+'" field.');formField.focus();result=false}return result}function validEmail(formField,fieldLabel,required){var result=true;if(required&&!validRequired(formField,fieldLabel))result=false;if(result&&((formField.value.length<3)||!isEmailAddr(formField.value))){alert("Please enter a complete email address in the form: yourname@yourdomain.com");formField.focus();result=false}return result}function validNum(formField,fieldLabel,required){var result=true;if(required&&!validRequired(formField,fieldLabel))result=false;if(result){var num=parseInt(formField.value);if(isNaN(num)){alert('Please enter a number for the "'+fieldLabel+'" field.');formField.focus();result=false}}return result}function validDate(formField,fieldLabel,required){var result=true;if(required&&!validRequired(formField,fieldLabel))result=false;if(result){var elems=formField.value.split("/");result=(elems.length==3);if(result){var month=parseInt(elems[0]);var day=parseInt(elems[1]);var year=parseInt(elems[2]);result=!isNaN(month)&&(month>0)&&(month<13)&&!isNaN(day)&&(day>0)&&(day<32)&&!isNaN(year)&&(elems[2].length==4)}if(!result){alert('Please enter a date in the format MM/DD/YYYY for the "'+fieldLabel+'" field.');formField.focus()}}return result}function validRadio(formField,fieldLabel){var result=true;var myOption=-1;for(i=0;i<formField.length;i++){if(formField[i].checked){myOption=i}}if(myOption==-1){alert('Please select a value for the "'+fieldLabel+'" field.');result=false}return result}function validCheckbox(formField,fieldLabel){var result=true;if(!formField.checked){alert('Please select a value for the "'+fieldLabel+'" field.');result=false}return result}function fillDay(selMonth,selDay,selYear){if(selMonth.options[selMonth.selectedIndex].value=="04"||selMonth.options[selMonth.selectedIndex].value=="06"||selMonth.options[selMonth.selectedIndex].value=="09"||selMonth.options[selMonth.selectedIndex].value=="11"){if(selDay.options[30]!=null){selDay.options[30]=null}}else if(selMonth.options[selMonth.selectedIndex].value=="02"){if(selYear.options[selYear.selectedIndex].value%4==0){var optDay29=new Option("29","29",false,false);selDay.options[28]=optDay29;if(selDay.options[30]!=null)selDay.options[30]=null;if(selDay.options[29]!=null)selDay.options[29]=null}else{if(selDay.options[30]!=null)selDay.options[30]=null;if(selDay.options[29]!=null)selDay.options[29]=null;if(selDay.options[28]!=null)selDay.options[28]=null}}else{if(selDay.options[28]==null){var optDay29=new Option("29","29",false,false);selDay.options[28]=optDay29}if(selDay.options[29]==null){var optDay30=new Option("30","30",false,false);selDay.options[29]=optDay30}if(selDay.options[30]==null){var optDay31=new Option("31","31",false,false);selDay.options[30]=optDay31}}return true}function setDateBox(selMonth,selDay,selYear){var currDate;var currMonth;var currDay;var currYear;currDate=new Date();currMonth=currDate.getMonth();currDay=currDate.getDate();currYear=currDate.getYear();selMonth.options[currMonth].selected=true;selDay.options[currDay-1].selected=true;if(currYear=='98')selYear.options[0].selected=true;if(currYear=='99')selYear.options[1].selected=true;if(currYear=='00')selYear.options[2].selected=true;return true}var isNN=(navigator.appName.indexOf("Netscape")!=-1);function autoTab(input,len,e){var keyCode=(isNN)?e.which:e.keyCode;var filter=(isNN)?[0,8,9]:[0,8,9,16,17,18,37,38,39,40,46];if(input.value.length>=len&&!containsElement(filter,keyCode)){input.value=input.value.slice(0,len);input.form[(getIndex(input)+1)%input.form.length].focus()}function containsElement(arr,ele){var found=false,index=0;while(!found&&index<arr.length)if(arr[index]==ele)found=true;else index++;return found}function getIndex(input){var index=-1,i=0,found=false;while(i<input.form.length&&index==-1)if(input.form[i]==input)index=i;else i++;return index}return true}var max=6;var headerheight=60;var start=480;var heights=new Array(230,1100,550,1700,1700,1300);var shown=new Array();var safe=headerheight*max;safe+=start;var test=0;for(i=0;i<max;i++){safe+=heights[i];if(heights[i]>test)test=heights[i];shown[i+1]=false}safe-=test;var stylie="<STYLE TYPE='text/css'><!--";var endstylie="--></STYLE>";if(document.getElementById||document.all){document.write(stylie);document.write('.para {display: none}');document.write(endstylie)}else if(document.layers){document.write(stylie);document.write(".para {position: absolute; visibility: hide; top: "+safe+"}");document.write(".head {position: absolute;}");document.write(endstylie)}function blocking(nr,show){if(document.getElementById){if(show==0){document.getElementById(nr).style.display='none'}else if(show==1){document.getElementById(nr).style.display=''}}else if(document.all){if(show==0){document.all[nr].style.display='none'}else if(show==1){document.all[nr].style.display=''}}else if(document.layers){var i=parseInt(nr.substr(nr.length-1,1));var replacing=heights[i-1];if(show==0){shown[i]=false;replacing=-replacing;document.layers[nr].visibility='hide';document.layers[nr].top=safe}else if(show==1){shown[i]=true;document.layers[nr].visibility='show';var tempname='header'+i;document.layers[nr].top=document.layers[tempname].top+headerheight}for(j=(i+1);j<=max;j++){name1='header'+j;document.layers[name1].top+=replacing;if(shown[j]){name2='number'+j;document.layers[name2].top+=replacing}}}else{}}function NN4(){if(document.layers){pos=start;for(i=1;i<=max;i++){eval("document.layers['header"+i+"'].top = "+pos);eval("document.layers['header"+i+"'].visibility = 'show'");pos+=headerheight}}}if(document.getElementById){var upLevel=true}else if(document.layers){var ns4=true}else if(document.all){var ie4=true}function showObject(obj){if(ns4){obj.visibility="show"}else if(ie4||upLevel){obj.style.visibility="visible"}}function hideObject(obj){if(ns4){obj.visibility="hide"}if(ie4||upLevel){obj.style.visibility="hidden"}}if(typeof deconcept=="undefined"){var deconcept=new Object()}if(typeof deconcept.util=="undefined"){deconcept.util=new Object()}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object()}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1)}if(id){this.setAttribute("id",id)}if(w){this.setAttribute("width",w)}if(h){this.setAttribute("height",h)}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")))}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true}if(c){this.addParam("bgcolor",c)}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9)}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true)},setAttribute:function(_e,_f){this.attributes[_e]=_f},getAttribute:function(_10){return this.attributes[_10]},addParam:function(_11,_12){this.params[_11]=_12},getParams:function(){return this.params},addVariable:function(_13,_14){this.variables[_13]=_14},getVariable:function(_15){return this.variables[_15]},getVariables:function(){return this.variables},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16.push(key+"="+_18[key])}return _16},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath)}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" "}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\""}_19+="/>"}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath)}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />"}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />"}_19+="</object>"}return _19},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title)}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();SWFFormFix(this.getAttribute("id"));return true}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"))}}return false}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."))}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always"}catch(e){if(_23.major==6){return _23}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","))}}return _23};deconcept.PlayerVersion=function(_27){this.major=_27[0]!=null?parseInt(_27[0]):0;this.minor=_27[1]!=null?parseInt(_27[1]):0;this.rev=_27[2]!=null?parseInt(_27[2]):0};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false}if(this.major>fv.major){return true}if(this.minor<fv.minor){return false}if(this.minor>fv.minor){return true}if(this.rev<fv.rev){return false}return true};deconcept.util={getRequestParameter:function(_29){var q=document.location.search||document.location.hash;if(q){var _2b=q.substring(1).split("&");for(var i=0;i<_2b.length;i++){if(_2b[i].substring(0,_2b[i].indexOf("="))==_29){return _2b[i].substring((_2b[i].indexOf("=")+1))}}}return""}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2d=document.getElementsByTagName("OBJECT");for(var i=_2d.length;i>0;i--){_2d[i].style.display="none";for(var x in _2d[i]){if(typeof _2d[i][x]=="function"){_2d[i][x]=function(){}}}}};if(deconcept.SWFObject.doPrepUnload){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs)};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload)}if(Array.prototype.push==null){Array.prototype.push=function(_30){this[this.length]=_30;return this.length}}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;SWFFormFix=function(swfname){if(navigator.appName.toLowerCase()!="microsoft internet explorer")return false;var testnodename="SWFFormFixTESTER";document.write('<div id="'+testnodename+'" onclick="SWFFormFixCallback(this,\''+swfname+'\');return false;" style="display:none">&nbsp;</div>');document.getElementById(testnodename).onclick()};SWFFormFixCallback=function(obj,swfname){var path=document;var error=false;var testnode=obj;while(obj=obj.parentNode){if(obj.nodeName.toLowerCase()=="form"){if(obj.name!=undefined&&obj.name!=null&&obj.name.length>0){path=path.forms[obj.name]}else{alert("Error: one of your forms does not have a name!");error=true}}};testnode.parentNode.removeChild(testnode);if(error)return false;window[swfname]=path[swfname];return true};function highlight(checkbox,cell){if(document.getElementById){if(checkbox.checked){document.getElementById(cell).style.backgroundColor="#FFFF00"}else{document.getElementById(cell).style.backgroundColor=""}}else{return}}function selectall(checkbox,field){if(checkbox.checked){for(i=0;i<field.length;i++){field[i].checked=true}}else{for(i=0;i<field.length;i++){field[i].checked=false}}}