// DETECTOR DE BROWSER //
var dom = document.getElementById ? true : false;
var nn4 = document.layers ? true:false;
var ie4 = document.all ? true : false;
// DETECTOR DE BROWSER //

function changeBg(strId, color){
	document.getElementById(strId).style.backgroundColor = color;
}
function openEditoria(idxcontenido){
	window.open('../interior/editorial.php?idx='+idxcontenido,'editorial','tollbars=no, scrollbars=yes, width=200, height=200');
}

function openRecomendarLink(){
	window.open("agregarlinkvisitante.php",null,"height=400,width=400,status=yes,toolbar=no,menubar=no,location=no");

}
function changeFoto(strtarget, strsrc, strtxt){
	if(document.getElementById(strtarget).src) document.getElementById(strtarget).src = strsrc;	
	if(document.getElementById('txtGaleria')) document.getElementById('txtGaleria').innerHTML = strtxt;	
}

function check_email(email){
	var strRegExp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9])+$/;
	if ((!strRegExp.test(email)) && strRegExp != ""){
		return false;
	}	
	return true;
}

function getLink(idx, strlink){
  window.open('../interior/getbanner.php?idx='+idx+'&link='+strlink,'banner');
}
