// JavaScript Document
function expandcontract(valor,id,pic) {
	switch (valor){
	case '1':
		document.getElementById(id).style.display = "";
		document.getElementById(pic).style.display = "none";
	break;
	case '2':
		document.getElementById(id).style.display = "none";
		document.getElementById(pic).style.display = "";
	break;	
	default:
		//document.getElementById("claveDetail").innerHTML = "";
	}
}

function dispPopUp(ventana,w,h) {
		var mywindow = window.open(ventana,'','width='+w+',height='+h+',resizable=no,scrollbar=no,toolbar=no');
		mywindow.moveTo(300,300);
}
var statusmsg=""
function hidestatus(){
window.status=statusmsg
return true
}