<!-- 
function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function getBrowserWidth(){
	if (window.innerWidth){
		return window.innerWidth;}	
	else if (document.documentElement && document.documentElement.clientWidth != 0){
		return document.documentElement.clientWidth;	}
	else if (document.body){return document.body.clientWidth;}		
		return 0;
}
function doOnResize () {
	var anchoVentana = getBrowserWidth();
	if(anchoVentana < 1000){
		document.getElementById("Lcontenedor").width = 738;
	}
	else {
		document.getElementById("Lcontenedor").width = 990;
	}
}
window.onresize = doOnResize;
window.onload = doOnResize;
//-->
