// JavaScript Document
	
	$(document).ready(function(){	
		$("#slider").easySlider();
	});
	
// JavaScript Document

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

// JavaScript Document

function ChequearTodos(chkbox) 
{ 
for (var i=0;i < document.forms["form1"].elements.length;i++) 
{ 
var elemento = document.forms["form1"].elements[i]; 
if (elemento.type == "checkbox") 
{ 
elemento.checked = chkbox.checked 
} 
} 
} 

// JavaScript Document

<!--
var chat_win = null;
var w = 480, h = 340;
if (document.all) {
   w = document.body.clientWidth; 
   h = document.body.clientHeight;
}
if (document.layers) { 
w = window.innerWidth; 
h = window.innerHeight; 
}
function openBrWindow(theURL,winName,features) {
  chat_win=window.open(theURL,winName,features);
  if (chat_win.moveTo) {
  chat_win.moveTo(w/2,h/2);
  }
}

function abrechat(){
if (chat_win && chat_win.open && !chat_win.closed){
chat_win.focus();
}else{
openBrWindow('http://www.otuve.com/chat2/index.php','chat','toolbar=no,scrollbars=no,scrollbars=0,width=700,height=620');
}
}
//-->

// JavaScript Document

function ilumina (obj) { 
  obj.style.filter='alpha(opacity=100)'; 
  obj.style.opacity=1; 
} 
function apaga (obj) { 
  obj.style.filter='alpha(opacity=50)'; 
  obj.style.opacity=.5; 
} 

// JavaScript Document

function envbed() {

tipo=document.form1.tipoemb[document.form1.tipoemb.selectedIndex].value;
 
if (tipo == "youtube"){ 

div = document.getElementById('jukeima');

div.style.display='none';

}

if (tipo == "jukebox"){ 

div = document.getElementById('jukeima');

div.style.display = '';

}
}

function mostrardiv(iddiv) {

div = document.getElementById(iddiv);

div.style.display = '';

}

function cerrar(iddiv) {

div = document.getElementById(iddiv);

div.style.display='none';

}

// JavaScript Document

function mostrar(capa){
  var obj = document.getElementById(capa)
  if(obj.style.display == "block") obj.style.display = "none"
  else obj.style.display = "block"
}

// JavaScript Document

function seleccionar(obj){
	if(obj.nodeName.toLowerCase()=='textarea' || (obj.nodeName.toLowerCase()=='input' && obj.type=='text')){
		obj.select();
		return;
	}
	if (window.getSelection) { 
        var sel = window.getSelection();
        var range = document.createRange();
        range.selectNodeContents(obj);
        sel.removeAllRanges();
        sel.addRange(range);
    } 
	else if (document.selection) { 
    	document.selection.empty();
    	var range = document.body.createTextRange();
		range.moveToElementText(obj);
		range.select();
    }
}
// JavaScript Document