// JavaScript Document

function pendiente(queCosa)
{
	alert(queCosa);
}

function agregarEstilos()
{
/*	if ((navigator.appName).indexOf("Microsoft")!=-1) 
	{
		document.write('<link href="../../script/estilos/estilos.css" rel="stylesheet" type="text/css" />');
	}
	else 
	{
	    document.write('<link href="../../script/estilos/estilosFF.css" rel="stylesheet" type="text/css" />');
	}*/
}

function opcionBarraMouseOver(object)
{
	object.style.backgroundColor = "#eeeeee";
}

function opcionBarraMouseOut(object)
{
	object.style.backgroundColor = "#ffffff";
}

function oportunidades()
{
	window.open("../oportunidades/oportunidades.asp", 'oportunidades', 'resizable=yes,scrollbars=yes,status=0,toolbar=no, width=630, height=490,left=100,top=100');	
}

function resizeImg()
{
	// ========================
	// Customise these variables as you wish
	// ========================

	var _resizeWidth  = 100;
	var _resizeHeight = 100;
	var _resizeClass  = 'news-img';

	var imgArray = document.getElementsByTagName( 'IMG' );

	for ( var i = 0; i < imgArray.length; i++ )
	{
		var imgObj = imgArray[i];
			
		if ( imgObj.className == _resizeClass )
		{
			imgObj.style.width = _resizeWidth + 'px';
			imgObj.style.height = _resizeHeight + 'px';
		}
	}
}


