		window.onerror = myError;
		
		function myError(message, url, line){
			return true;
		}
 		function openChatWin(DEPT) {
			var popupWin=null;
			var LeftPosition = (screen.width) ? (screen.width-400)/2 : 0;
			var TopPosition = (screen.height) ? (screen.height-350)/2 : 0;
			
		  popupWin = window.open('http://www.homeed.com/chat/chat.asp?dpt='+DEPT+'&r='+Math.random(), 'ChatWin', 'height=350,width=400,top='+TopPosition+',left='+LeftPosition);
		}
		
		function MM_preloadImages() { //v3.0
		  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
		    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
		    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
		}
		
		function MM_swapImgRestore() { //v3.0
		  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
		}
		function MM_findObj(n, d) { //v4.01
		  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
		    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
		  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
		  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
		  if(!x && d.getElementById) x=d.getElementById(n); return x;
		}
		
		function MM_swapImage() { //v3.0
		  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
		   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
		}
		
		var LastExpandedO=null;
		var LastExpandedI=null;
		
		function Expand(O,I){
		
		    try{
		        if(LastExpandedO!=null&&LastExpandedO!=O){
		            document.getElementById(LastExpandedO).style.display="none";
		            document.getElementById(LastExpandedI).src="menplus.gif";
		        }
		    }catch(err){}
		    
			try{
			    if(document.getElementById(O).style.display!='block'){
			        document.getElementById(O).style.display='block'; LastExpandedO=O; 
			        document.getElementById(I).src='menminus.gif'; LastExpandedI=I;
			    }else{
			        document.getElementById(O).style.display='none'; LastExpandedO=null;
			        document.getElementById(I).src='menplus.gif'; LastExpandedI=null;
			    }
			}catch(err){}
		}
		
		
		function openCSLQuiz(){
    	
	    var CSLWindow=null;
	    var LeftPosition = (screen.width) ? (screen.width-536)/2 : 0;
	    var TopPosition = (screen.height) ? (screen.height-396)/2 : 0;

	    CSLWindow=window.open('CSLQuiz/default.asp?r='+Math.random(),'CSLPopQuiz','left='+LeftPosition+',top='+TopPosition+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=536,height=396');
   }
   
   function ShowApplication(){
        if(document.getElementById('divApplicationForm')){
            document.getElementById('divApplicationForm').style.display=''; 
        }else{
            var divTag = document.createElement("div");
            divTag.id = 'divApplicationForm';
            divTag.style.position='fixed';
            divTag.style.width='450px';
            divTag.style.height='200px';
            divTag.style.top='150px';
            divTag.style.left='100px';
            divTag.style.border='solid 3px Silver';
            divTag.style.left='50%';
            divTag.style.marginLeft='-225px';
            divTag.style.overflow='hidden';
            divTag.innerHTML = '<iframe src="application/intro.aspx" scrolling="no" frameborder="1" style="width:450px;height:200px;" />';
            document.body.appendChild(divTag);
        }
   }
     
   function HideApplication(){
    try{
        document.getElementById('divApplicationForm').style.display='none';    
    }catch(err){}
   }