// Hook for validator. 
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
 	document.write('On Error Resume Next\n');
 	document.write('Sub ads_leaderAd_FSCommand(ByVal command, ByVal args)\n');
 	document.write('	Call ads_leaderAd_DoFSCommand(command, args)\n');
 	document.write('End Sub\n');
 	document.write('Sub ads_boomboxAd_FSCommand(ByVal command, ByVal args)\n');
 	document.write('	Call ads_boomboxAd_DoFSCommand(command, args)\n');
 	document.write('End Sub\n');
 	document.write('Sub ads_floatingAd_FSCommand(ByVal command, ByVal args)\n');
 	document.write('	Call ads_floatingAd_DoFSCommand(command, args)\n');
 	document.write('End Sub\n');
 	document.write('Sub ads_coverFloatingAd_FSCommand(ByVal command, ByVal args)\n');
 	document.write('	Call ads_coverFloatingAd_DoFSCommand(command, args)\n');
 	document.write('End Sub\n');		
 	document.write('</script\>\n');
}
// End Hook for validator. 

function ads_leaderAd_DoFSCommand(command, args) { 
  if (command == "ads_expand") {
	var ad = document.getElementById('leaderAd'); 
	ad.className='leaderAdExpand';
  }

  if (command == "ads_collapse") { 
	var ad = document.getElementById('leaderAd');
	ad.className='leaderAd';
  }
}

function ads_boomboxAd_DoFSCommand(command, args) { 
  if (command == "ads_expand") {
	var ad = document.getElementById('expandBoombox'); 
	ad.className='expandBBExpand';
  }

  if (command == "ads_collapse") { 
	var ad = document.getElementById('expandBoombox');
	ad.className='expandBBNormal';
  }
}

function ads_floatingAd_DoFSCommand(command, args) { 
  if (command == "ads_fexpand") {
	var ad = document.getElementById('floatingAd'); 
	ad.className='showFloatingAds';
  }

  if (command == "ads_fcollapse") { 
	var ad = document.getElementById('floatingAd');
	ad.className='hideFloatingAds';
  }
} 

function ads_coverFloatingAd_DoFSCommand(command, args) { 
  if (command == "ads_expand") {
	var ad = document.getElementById('topbannn'); 
 }

  if (command == "ads_collapse") { 
	var ad = document.getElementById('topbannn');
  }
}
