// JavaScript Document
function rotar(elemid) {
  if (document.getElementById(elemid).width<150) 
  {
	window.clearTimeout(ID2)
  	document.getElementById(elemid).width+=5;
  	document.getElementById(elemid).height+=5;
  }
  ID=window.setTimeout("rotar('" + elemid+ "');",20);
}
function detener(elemid2){
//window.clearTimeout(ID)
	if (document.getElementById(elemid2).width>75) 
  {
	window.clearTimeout(ID)
  	document.getElementById(elemid2).width-=5;
  	document.getElementById(elemid2).height-=5;
  }
  ID2=window.setTimeout("detener('" + elemid2+ "');",20);
} 

function aumenta1() {
  if (document.getElementById('foto1').width<150) 
  {
	window.clearTimeout(F1D)
  	document.getElementById('foto1').width+=5;
  	document.getElementById('foto1').height+=5;
  }
  F1A=window.setTimeout("aumenta1();",10);
}
function disminuye1(){
//window.clearTimeout(ID)
	if (document.getElementById('foto1').width>75) 
  {
	window.clearTimeout(F1A)
  	document.getElementById('foto1').width-=5;
  	document.getElementById('foto1').height-=5;
  }
  F1D=window.setTimeout("disminuye1();",20);
} 

function aumenta2() {
  if (document.getElementById('foto2').width<150) 
  {
	window.clearTimeout(F2D)
  	document.getElementById('foto2').width+=5;
  	document.getElementById('foto2').height+=5;
  }
  F2A=window.setTimeout("aumenta2();",10);
}
function disminuye2(){
//window.clearTimeout(ID)
	if (document.getElementById('foto2').width>75) 
  {
	window.clearTimeout(F2A)
  	document.getElementById('foto2').width-=5;
  	document.getElementById('foto2').height-=5;
  }
  F2D=window.setTimeout("disminuye2();",20);
} 

function aumenta3() {
  if (document.getElementById('foto3').width<150) 
  {
	window.clearTimeout(F3D)
  	document.getElementById('foto3').width+=5;
  	document.getElementById('foto3').height+=5;
  }
  F3A=window.setTimeout("aumenta3();",10);
}
function disminuye3(){
//window.clearTimeout(ID)
	if (document.getElementById('foto3').width>75) 
  {
	window.clearTimeout(F3A)
  	document.getElementById('foto3').width-=5;
  	document.getElementById('foto3').height-=5;
  }
  F3D=window.setTimeout("disminuye3();",20);
} 
function aumenta4() {
  if (document.getElementById('foto4').width<150) 
  {
	window.clearTimeout(F4D)
  	document.getElementById('foto4').width+=5;
  	document.getElementById('foto4').height+=5;
  }
  F4A=window.setTimeout("aumenta4();",10);
}
function disminuye4(){
//window.clearTimeout(ID)
	if (document.getElementById('foto4').width>75) 
  {
	window.clearTimeout(F4A)
  	document.getElementById('foto4').width-=5;
  	document.getElementById('foto4').height-=5;
  }
  F4D=window.setTimeout("disminuye4();",20);
} 
function aumenta5() {
  if (document.getElementById('foto5').width<150) 
  {
	window.clearTimeout(F5D)
  	document.getElementById('foto5').width+=5;
  	document.getElementById('foto5').height+=5;
  }
  F5A=window.setTimeout("aumenta5();",10);
}
function disminuye5(){
//window.clearTimeout(ID)
	if (document.getElementById('foto5').width>75) 
  {
	window.clearTimeout(F5A)
  	document.getElementById('foto5').width-=5;
  	document.getElementById('foto5').height-=5;
  }
  F5D=window.setTimeout("disminuye5();",20);
} 
function aumenta6() {
  if (document.getElementById('foto6').width<150) 
  {
	window.clearTimeout(F6D)
  	document.getElementById('foto6').width+=5;
  	document.getElementById('foto6').height+=5;
  }
  F6A=window.setTimeout("aumenta6();",10);
}
function disminuye6(){
//window.clearTimeout(ID)
	if (document.getElementById('foto6').width>75) 
  {
	window.clearTimeout(F6A)
  	document.getElementById('foto6').width-=5;
  	document.getElementById('foto6').height-=5;
  }
  F6D=window.setTimeout("disminuye6();",20);
}
function aumenta7() {
  if (document.getElementById('foto7').width<150) 
  {
	window.clearTimeout(F7D)
  	document.getElementById('foto7').width+=5;
  	document.getElementById('foto7').height+=5;
  }
  F7A=window.setTimeout("aumenta7();",10);
}
function disminuye7(){
//window.clearTimeout(ID)
	if (document.getElementById('foto7').width>75) 
  {
	window.clearTimeout(F7A)
  	document.getElementById('foto7').width-=5;
  	document.getElementById('foto7').height-=5;
  }
  F7D=window.setTimeout("disminuye7();",20);
} 
 




function ver(iddiv){
	if (document.getElementById('prueba'+iddiv).style.visibility=='visible')
	{
  		document.getElementById('prueba'+iddiv).style.visibility='hidden';
	}
	else
	{
		document.getElementById('prueba1').style.visibility='hidden';
		document.getElementById('prueba2').style.visibility='hidden';
		document.getElementById('prueba3').style.visibility='hidden';
		document.getElementById('prueba4').style.visibility='hidden';
		document.getElementById('prueba5').style.visibility='hidden';
		document.getElementById('prueba6').style.visibility='hidden';
		document.getElementById('prueba7').style.visibility='hidden';
		document.getElementById('prueba'+iddiv).style.visibility='visible';
	}
} 
