//Specify affected tags. Add or remove from list:
//var tgs = new Array( 'div', 'a', 'span' );
var tgs = new Array( 'div', 'span');
var tgs1 = new Array( 'a');

//Specify spectrum of different font sizes:
var szs = new Array( '14px','16px','18px','20px','22px','24px','26px','28px','30px','32px');
var hgt = new Array( '18px' ,'20px','22px','24px','26px','28px','30px','32px','34px','36px' );

var startSz = 1;

function ts( trgt,inc ) {
	if (!document.getElementById) return
	var d = document,cEl = null,sz = startSz,i,j,cTags;
	
	sz += inc;
	if ( sz < 0 ) sz = 0;
	if ( sz > 10 ) sz = 10;
	startSz = sz;
		
	if ( !( cEl = d.getElementById( trgt ) ) ) cEl = d.getElementsByTagName( trgt )[ 0 ];
	
	if ( !( cE2 = d.getElementById( 'body_content2' ) ) ) cE2 = d.getElementsByTagName( 'body_content2' )[ 0 ];
	

	cEl.style.fontSize = szs[ sz ];
	cE2.style.fontSize = szs[ sz ];
	
	for ( i = 0 ; i < tgs.length ; i++ ) {
		cTags = cEl.getElementsByTagName( tgs[ i ] );
		cTags = cE2.getElementsByTagName( tgs[ i ] );
	}
	
	
}


document.write('<style type="text/css">#bottom_2{display:inline;position:relative;padding-top:15px;}</style>');

var strOS, strBrowser, strTemp;
   
  strOS = "other";
  strBrowser = "other";  
 
  strTemp = navigator.appVersion.toLowerCase();
 
  if (strTemp.indexOf("mac") > 0)
   strOS = "mac";

  if (strTemp.indexOf("safari") > 0)
   strBrowser = "safari";
  
   
if ((strOS.toLowerCase() == "mac") && (strBrowser.toLowerCase() == "safari")){
document.write ('<style type="text/css">#bottom_1{float:left;width:35px;display:inline;position:relative;}#bottom_2{float:left;display:inline;position:relative;padding-top:15px;}#bottom_3{width:504px;float:right;bottom:30px;padding-right:2px;position:relative;}</style>');
  }
