// JavaScript Document
function emoticon(text) {
	var txtarea = document.form1.comentario;
	text = ' ' + text + ' ';
	if (txtarea.createTextRange && txtarea.caretPos) {
		var caretPos = txtarea.caretPos;
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
		txtarea.focus();
	} else {
		txtarea.value  += text;
		txtarea.focus();
	}
}


function popup(dir)
   { window.open(dir,'','dependent,HEIGHT=650,resizable=yes,scrollbars=yes,WIDTH=750');
   }
   
function popup_img(dir,ancho,largo)
   { window.open(dir,'','dependent,resizable=yes,scrollbars=yes,height='+ancho+',width='+largo);
   }
   
   

function HomePage(obj) 
  { obj.style.behavior='url(#default#homepage)';
    obj.setHomePage('http://www.ps2vicio.com'); 
  }

function addFav() 
   { url_site="http://www.ps2vicio.com"; 
	 titre_site = "PS2Vicio - Revista Juegos PS2 PSP PS3";
     window.external.AddFavorite(url_site, titre_site);
	 return(false);
	}