//2003 FitQuest S.L. 
var list = new Object();
//div_openclose
function div_openclose(id){

try{
	div_status = document.getElementById("expand_"+id).style.display;
	if (div_status == 'none'){ //open
		new_status  = 'block'; list[id] = 'open';
		if (arguments.length==2) {//track open
			web_log(arguments[1]);	
		}
	} else {					//close
		new_status = 'none'; list[id] = 'close';
	}
	document.getElementById("expand_"+id).style.display = new_status;	
	}catch (err){alert('err');}
}
//stats
function web_log(img_inf){
	try{document.wt.src = img_inf;}catch(err){}
}


function openwindow(u,n,w,h){ 
	var LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	var TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var  win = window.open (u,n,"toolbar=no,location=no,directories=no,status=no,scrollbars=auto,resizable=yes,width="+w+",height="+h+",top="+TopPosition+",left="+LeftPosition+""); 
	win.focus();
}

function isAdminView(){
	if (parent.frames.length){
		return true;
	} else {
		alert('Necesita acceder desde el Administrador');
		return false;
	}	
}