﻿// Archivo JScript
function CreateBookmarkLink() {

    title = "Qué Franquicia"; 
    url = "http://www.quefranquicia.com";
 
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
 }


function VentanaCentrada(URL,ancho, alto, titulo)
{
  var width=ancho; height=alto;
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;
  var styleStr =  'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
   var msgWindow = window.open(URL,"EnFranquicia", styleStr);
  //msgWindow.focus();
 //	msgWindow.document.title = titulo;
}

