// JavaScript Document
function checknlform(theForm) {
	var returnvalue = true;
	if ( theForm.nl_email.value=="" || theForm.nl_email.value.indexOf("@")<0 ) {
		returnvalue=false;
		alert('e-mail incorrecto');
		theForm.nl_email.focus();
	}
	return returnvalue;
}

function addFavorite(title, url) {
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
		};
	if( document.all ) {
		window.external.AddFavorite( url, title );
		};
}
function setHome() {
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage('http://www.oportaldeturismo.com');
}
function gotopage(obj) {
	window.location='default.asp?goto=' + obj.value;
//	parent.content.focus();
}
/*
function bgcolor( object, bg ) {
	if ( bg==0 ) { object.style.background = ''; }
	if ( bg==1 ) { object.style.background = bg; }
}
*/
function showInfo(ficha) {
	window.open( ficha,"xxx","height=500,width=450,menubar=no,resizable=no,status=0,left=200,top=0,scrollbars=1")
}
