// JavaScript Document
function addFavourite()

{
	var url="http://www.dreamaquatic.com";
	var title="dreamaquatic.com";
	var i = navigator.userAgent.indexOf("Netscape");
	if(i >= 0)
	{
		alert("Press Ctrl + D to Bookmark this Page");
	}
	else if (window.sidebar) // firefox
	{
		window.sidebar.addPanel(title, url, "");
	}
	else if(window.opera && window.print)
	{ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',url);
		elem.setAttribute('title',title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)// ie
	{window.external.AddFavorite(url, title);}
	else
	{
		alert("Press Ctrl + D to Bookmark this page");
	}
}


function Bookmark()
{
	var i = navigator.userAgent.indexOf("Netscape");
	if(i >= 0)
	{
		alert("Press Ctrl + D to Bookmark this Page");
	}
	else if (window.sidebar) // firefox
	{
		window.sidebar.addPanel("dreamaquatic.com" + document.title, window.location , "");
	}
	else if(window.opera && window.print)
	{ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',window.location);
		elem.setAttribute('title',document.title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all)// ie
	{
		window.external.AddFavorite(window.location, 'www.dreamaquatic.com - ' + document.title);
	}
	else
	{
		alert("Press Ctrl + D to Bookmark this page");
	}
}
