// JavaScript Document
<!--

var myURL = "";

window.onresize = scaleImages;

 function scaleImages() {
 
 	var myWidth = 0, myHeight = 0;
  
  if( typeof( window.innerWidth ) == 'number' ) {
  
    //Non-IE
    overLap = 600
    myHeight = window.innerHeight;
	myHeight = myHeight - overLap
	
  } else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
 	
	 overLap = 605
   	 myHeight = document.documentElement.clientHeight;
     myHeight = myHeight - overLap
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {

	//IE 4 compatible
    overLap = 600
    myHeight = document.body.clientHeight;
	myHeight = myHeight - overLap
}

	document.getElementById('reSize').style.marginBottom = myHeight+"px";
}


function expandThis(myName) {
	
		
		divName = myName + "_div";
		
		if (document.getElementById(divName).style.display == "none"){
			document.getElementById(divName).style.display = "inline";
			document[myName].src = '/mainimages/arrow_exp.gif';
			
		}else{
			
		if (document.getElementById(divName).style.display == "inline"){
			document.getElementById(divName).style.display="none";
			
		
			document[myName].src = '/mainimages/arrow_col.gif';
		
		}
		
	}		
}


//-->