﻿// JavaScript Document

function engAddWebsiteToFavorites()
{ 
	var urlAddress = "http://www.webcraft.co.il/eng-index.html";
	var pageName   = "Webcraft Internet Services";

	if (window.external) { 
		window.external.AddFavorite(urlAddress,pageName);
	} else { 
		alert("Sorry! Your browser doesn't support this function."); 
	} 
} 

function engAddCurrentPageToFavorites()
{
	// TBD
}

function hebAddWebsiteToFavorites()
{ 
	var urlAddress = "http://www.webcraft.co.il";
	var pageName   = "וובקראפט שירותי אינטרנט";

	if (window.external) { 
		window.external.AddFavorite(urlAddress,pageName);
	} else { 
		alert("Sorry! Your browser doesn't support this function."); 
	} 
} 

function hebAddCurrentPageToFavorites()
{
	// TBD
}

