<!--
function offers(theDiv)
{
	
     if (document.getElementById(theDiv).style.height == '30px')
     {
	
	  //SHOW
      document.getElementById(theDiv).style.height = '100%';
		  
	  document.all("showhide").innerHTML = 'Hide offers&nbsp;<img src="images/menu/expanded_2.gif" />';
     
	 }
	 else{ 
	 
	 //HIDE ;&raquo;
		
	 document.getElementById(theDiv).style.height = '30px';
	 
	 document.all("showhide").innerHTML = 'Show offers&nbsp;<img src="images/menu/expanded.gif" />'; //
		 
	 }
}
//-->

function expand(theDiv) {
	
	 //IF AT DEFAULT HEIGHT		
     if (document.getElementById(theDiv).style.height != '100%'){
	
	  //SHOW (CHANGE HEIGHT/BORDER STYLE)
      document.getElementById(theDiv).style.height = '100%';
	  //document.getElementById(theDiv).style.border = '0px solid';
	  document.getElementById(theDiv).style.border = '1px solid #CAC29E';
	  document.getElementById(theDiv).style.borderBottom = 'none';
	  document.getElementById(theDiv).style.margin = '0';
	  document.getElementById(theDiv).style.padding = '0';
		
	   if(theDiv == 'savebasket') {
		
	  	var inputs = document.getElementsByTagName('input');
		
		for(var i=0; i<inputs.length; i++) {
		
			if(inputs[i].getAttribute('name') == 'login_email') {
			
				inputs[i].focus();
			
			}
		
		}
	  
	  
	  
	  }
	  
	  return true;	
		
	  //document.all("showhide").innerHTML = 'Hide offers&nbsp;<img src="images/menu/expanded_2.gif" />';
     }
	 
}