// JavaScript Document
	function getSize() {
	 
	  var myWidth = 0, myHeight = 0;
	  if( typeof( window.innerHeight ) == 'number' ) {
		//Non-IE
		myHeight = window.innerHeight;
	  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myHeight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myHeight = document.body.clientHeight;
	  }
	  //window.alert( 'Height = ' + myHeight );
	  return myHeight;
	}
	 
	function rollOver(bot){
		document.getElementById(bot).style.color="#000000"
		document.getElementById(bot).style.backgroundImage="url(img/fondobotRO.gif)"
	}
	function rollOut(bot){
		document.getElementById(bot).style.color="#FFFFFF"
		document.getElementById(bot).style.backgroundImage="url(img/fondobot.gif)"
	}
	function colocoSilla(){
		altura=getSize()-110
		document.getElementById("silla").style.top=altura
	}
	function clickBot1(){
		window.location="webCon.html";
	}
	function clickBot2(){
		window.location="webSin.html";
	}
