// Send page URL by email
function SendLink(){
	var url=location.href;
	var title=document.title;
	var email=prompt("Ingresa el correo de la persona para enviarle un enlace a: \n"+title,"");
	if (email != null && email.indexOf("@") > -1) {
		target='mailto:'+email+'?subject=Enviando enlace a: '+title+'&body='+url;
		parent.location.href=target;
	}
}
// Bookmark page
function SaveLink(surl){
	if(surl.indexOf("file:") > -1) surl="home"; // IE cant use pages from hd: use main URL
	if(surl=="home") surl="http://www.divxland.org/esp"; else surl=location.href;
	var ptitle=document.title;
	if(window.external) {                           // add2ie
		external.AddFavorite(surl,ptitle);
	} else if(window.sidebar && sidebar.addPanel) { // add2ff
		sidebar.addPanel(ptitle,surl,'');
	} else {                                        // unknown browser
		alert('Imposible reconocer su explorador, agregue la página manualmente.');
	}
}
// Print page
function PrintPage(){
	window.print()
}
var downon="";
var downoff="";
var goon="";
var gooff="";
// Preload down buttons
function PreLoad(){
	downon=new Image(118,26);
	downon.src="common/img/down_on.gif";
	downoff=new Image(118,26);
	downoff.src="common/img/down_off.gif";
	goon=new Image(16,16);
	goon.src="common/img/icogo.gif";
	gooff=new Image(16,16);
	gooff.src="common/img/icogo_off.gif";
}
// Generate custom popup
function NewWindow(mypage,myname,w,h,scroll,resize){
	var win=null;
	LeftPosition=(screen.width)?(screen.width-w)/2:100;
	TopPosition=(screen.height)?(screen.height-h)/2:100;
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=yes,menubar=no,toolbar=no,resizable='+resize+'';
	win=window.open(mypage,myname,settings);
}
// Set status bar message to current page's title
function SetStatus(){
	var nstat="Estás en: "+document.title;
	window.defaultStatus=nstat;
}
// Load bottom iframe content
function ShowIframeAds(){
	if(document.getElementById('mladtop')){
		document.all.mladtop.src="http://smartad.mercadolibre.com.ar/jm/SmartAd?tool=1902108&creativity=12601&new=Y&ovr=N&bgcol=FFFFFF&brdcol=006666&txtcol=000000&lnkcol=006666&hvrcol=009999&prccol=FF6600&word=divx&word=dvd&word=portatil&site=MLA"
		document.all.mladtop.width="728";
		document.all.mladtop.height="90";
	}
	if(document.getElementById('mladftr')){
		document.all.mladftr.src="http://smartad.mercadolibre.com.ar/jm/SmartAd?tool=2105943&creativity=8201&new=Y&ovr=N&bgcol=FFFFFF&brdcol=000000&txtcol=006600&lnkcol=0000FF&hvrcol=FF0000&prccol=FF0000&word=mp3&word=usb&word=divx&site=MLA";
	}
}
