
var urlAddress = location.href;
var pageName = "Bibliotheca Alexandrina - The Cyber Library"; 

function addToFavorites() 
{ 
	if (window.external) 
	{ 
		window.external.AddFavorite(urlAddress,pageName) 
	} 
	else 
	{ 
		window.sidebar.addPanel(pageName,urlAddress,"")
	} 
} 

function HomePage(obj)
{
	if (window.external)
	{
    	obj.style.behavior='url(#default#homepage)';
    	obj.setHomePage(urlAddress);
	}
	else
	{	
		//window.home();
		alert('Drag this link onto your Home button to make this your Home Page.');
	}
}

function popupprint(page,vWidth,vHeight,scroll) 
{
	siteWindow = window.open(page,'','width='+vWidth+',height='+vHeight+',scrollbars='+scroll+',top=0,left=0,status=no,toolbar=no,resizable=no,location=no,menubar=yes')
	siteWindow.focus()
}

function popup(page,vWidth,vHeight,scroll) 
{
	siteWindow = window.open(page,'','width='+vWidth+',height='+vHeight+',scrollbars='+scroll+',top=0,left=0,status=no,toolbar=no,resizable=no,location=no,menubar=no')
	siteWindow.focus()
}
	

