
var isMozilla = !(document.all);
var isBeingDragged = false;
function setHome() {
if(navigator.appName!="Microsoft Internet Explorer" && navigator.appName!="Netscape")
{
alert("From the browser menu,Select Preferences->General tab's Home Page entry box, type bluebirdin.com and click OK");
}else{
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage("http://bluebirdin.com");
}
return false;
}
function firefoxAlert() {
if(navigator.appName!="Microsoft Internet Explorer" && navigator.appName!="Netscape")
{
alert("From the browser menu,Select Tools->Preferences->General tab's Home Page entry box, type bluebirdin.com and click OK");
}else{
alert('To set bluebirdin as your home page in Firefox, click and drag the button to the "Home" icon in your browser.');
}
return false;
}