function mouseOver(a_id){
 a_id.style.backgroundColor="ffffff";
 a_id.style.color="#000000";
 
}
function mouseOut(a_id){
 a_id.style.backgroundColor="#800000";
 a_id.style.color="#FFFFFF";
}

function click(n){
 location=n
}

function getWidth(){ 
 var myWidth = 0; 
if( typeof( window.innerWidth ) == 'number' ){
  myWidth = window.innerWidth; 
}
else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
  myWidth = document.documentElement.clientWidth; 
} 
else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
  myWidth = document.body.clientWidth; 
} 
 return(myWidth);
}

function getHeight(){ 
 var myHeight = 0; 
if( typeof( window.innerHeight ) == 'number' ){
  myHeight = window.innerHeight; 
}
else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
  myHeight = document.documentElement.clientHeight; 
} 
else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
  myHeight = document.body.clientHeight; 
} 
 return(myHeight);
}

function javafunctions(){
 window.moveTo(0,0);
 window.resizeTo(screen.width,screen.height);
}
