<!--
function showhid(object)
{
if (object.style.display=='none')
   {
    object.style.display='block';
	}
else if (object.style.display=='block')
    {
	 object.style.display='none';
	 }
}

function mover(object)
{
	object.style.cursor='pointer'
	object.bgColor="#D0E7EA";
}

function mout(object)
{  
  object.style.cursor='defult'
  object.bgColor="";
}

function imgbgcin(obj)
{
  obj.bgColor="#0092D7";
}
function imgbgcout(obj)
{
  obj.bgColor="";
}

function changestyle(object)
  {
    document.object.submit();
  }
  
function setheight(object,object2,object3)
{
   var hei = 0;
   hei = object3.style.height - 56;
   object.style.height = hei;
   object2.style.height = hei;
}
//forbid right click and select all
document.oncontextmenu=new Function("event.returnValue=false;");
//document.onselectstart=new Function("event.returnValue=false;");



//-->
