function openWin(theURL,winName,features) 
{
	window.open(theURL,winName,'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=245,height=250');
}

function PieMouseOver(e)
{
	e.style.color='#444444';
	e.style.textDecorationUnderline=true;
	
}

function PieMouseOut(e)
{
	e.style.color='#444444';
	e.style.textDecorationUnderline=false;
}

function Marcar(e)
{
	e.style.border = "1px solid #C6A43D";
}

function Desmarcar(e)
{
	e.style.border = "1px solid #efefef"
}
function Over(e)
{
	e.style.textDecorationUnderline=true;
	
}

function Out(e)
{
	e.style.textDecorationUnderline=false;
}


function BotonMouseOverCaja(e)
{
	e.style.color="#ffffff";
	e.style.backgroundColor="#EEBB0B";
	e.style.textDecorationUnderline=false;
	e.style.cursor = 'hand';
	e.style.border = "1px solid #EEBB0B"

}

function BotonMouseOutCaja(e)
{
	e.style.color="#B9B9B9";
	e.style.backgroundColor="#FFFFFF";
	e.style.textDecorationUnderline=false;	
	e.style.cursor = 'default';
	e.style.border = "1px solid #dddddd"
}

//---------------------------------------------------------------------------------------------------------
//------------------------------------ AQUI EMPIESAN MIS SCRIPT -------------------------------------------
//---------------------------------------------------------------------------------------------------------

var titulopordefecto = "Tecnológico Atlixco"; //Si no se especifica un título al llamar a la función colocará el que se especifique aquí
var ventana;
var cont=0;

function afoto(cual,titulo)
{
	if(cont==1)
	{
		ventana.close();ventana=null
	}
	
	if(titulo==null)
	{
		titulo=titulopordefecto
	}

	ventana=window.open('','ventana','resizable=yes,scrollbars=no')
	ventana.document.write('<html><head><title>' + titulo + '</title></head><body style="overflow:hidden" marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" scroll="no" onUnload="opener.cont=0"><img src="' + cual + '" onLoad="opener.redimensionar(this.width, this.height)">');
	ventana.document.close();
	cont++;
}

function redimensionar(ancho, alto)
{
	ventana.resizeTo(ancho+12,alto+28);
	ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2); //centra la ventana. Eliminar si no se quiere centrar el popup
}

function hoy()
{
    var mydate = new Date();
    var year = mydate.getFullYear();
    var day = mydate.getDay();
    var month = mydate.getMonth();
    var daym = mydate.getDate();
    var dayarray = new Array("Domingo", "Lunes", "Martes", "Miercoles", "Jueves", "Viernes", "Sabado");
    var montharray = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
    return(dayarray[day] + " " + daym + " de " + montharray[month] + " del  " + year);
}

function foco(elemento)
{
	elemento.style.border = "1px solid #FF3300";
}

function no_foco(elemento)
{
	elemento.style.border = "1px solid #CCCCCC";
}

function buscar()
{ 
	window.open("http://www.google.com/search?q="+unescape(document.form.q.value)+"&hl=es"); 
}

function BotonMouseOver(e)
{
	e.style.color="#ffffff";
	e.style.backgroundColor="#B52C31";
	e.style.textDecorationUnderline=false;
	e.style.cursor = 'hand';
	e.style.border = "1px solid #B52C31"
}

function BotonMouseOut(e)
{
	e.style.color="#B52C31";
	e.style.backgroundColor="#FFFFFF";
	e.style.textDecorationUnderline=false;	
	e.style.cursor = 'default';
	e.style.border = "1px solid #B52C31"
}