<!--
function HoverCell_1(strOnOff,oSourceTag){
        window.onerror = null;
	var isIE;
	var oTagID;
	if (navigator.appVersion.indexOf('MSIE') != -1){
		isIE = true;
		oTagID = oSourceTag.style;
	}else{
		isIE = false;
		oTagID = eval("ids." + oSourceTag.id);
	}	
	if (strOnOff == 'on'){
		oTagID.backgroundColor = '#ffffff';
		oTagID.color = '';
	}else{
		oTagID.backgroundColor = '';
		oTagID.color = '';
	}
	return true;
}
//-->

<!--

//share js------------------------------------------------------//
function openwin(Url)
{
  msgwin=window.open(Url,"msg","left=0,top=0,width=500,height=700,resizable=yes,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no");
  msgwin.focus();
	return;
}
function openwin1(Url)
{
  msgwin=window.open(Url,"msg","left=0,top=0,width=500,height=700,resizable=yes,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no");
  msgwin.focus();
	return;
}

function makevisible(cur,which){
if (which==0)
cur.filters.alpha.opacity=100
else
cur.filters.alpha.opacity=40
}


function openwindow(url) {
   window.open(url,'new','scrollbars=yes,resizable=yes,width=570,height=500');
    }
function opennews(url) {
   window.open(url,'new','scrollbars=yes,resizable=yes,width=570,height=500');
    }


//-->

// =======================================
// set variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 2000
var crossFadeDuration = 3
var Pic = new Array() 

Pic[0] = '/images/about.gif'
Pic[1] = '/images/about01.gif'

// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}