// JavaScript Document by Javier Jimenez Rico

function loadPage(mypage,widthN,heightN,scrolling)
{
var mysubwind;
if(!mysubwind || mysubwind.closed)
             {
           mysubwind=window.open(mypage,"","width="+widthN+",height="+heightN+",menubar=0,scrollbars=" + scrolling + ",resizable=0");
              }
            else
             {
              mysubwind.focus();
             }
}
function loadPage1(mypage)
{
var mysubwind;
if(!mysubwind || mysubwind.closed)
             {
           mysubwind=window.open(mypage,"","width=800,height=600,menubar=0,scrollbars=0,resizable=0");
              }
            else
             {
              mysubwind.focus();
             }
}

function addfav(option)
{
 selection=option; 
 if (document.all)
  {
       switch(selection)
	   {
		 case"favorites":
		  {
	      if (confirm("Are you sure you want to add this page to favorites?"))
		  {
	      window.external.AddFavorite("http://www.indembassyhavana.cu","Embassy of India");
		  }
          }
		case"home":
		   {
             //if (confirm("Are you sure you want to make this your start page?"))
		      //{
			//window.setHomePage('http://www.indembassyhavana.cu');
		     // }
		   }
        }
   }
} 		           
	  