﻿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 forerez.com and click OK");
	}
	else if(/MSIE (\d+\.\d+);/.test(navigator.userAgent))
	{
		var ieversion=new Number(RegExp.$1);
		if(ieversion>=7)
		{
			document.body.style.behavior='url(#default#homepage)';
			document.body.setHomePage("http://www.forerez.in");
		}
		else if(ieversion>=5)
		{
			alert('To set forerez.com as your home page, click and drag the link to the "Home" icon in your browser.');
		}
	}
	return false;
}

function firefoxAlert()
{
	var val = navigator.userAgent.toLowerCase();

	 if(val.indexOf("firefox") > -1)

      {
			alert('To set forerez.com as your home page in Firefox, click and drag the link to the "Home" icon in your browser.');
      }

      else if(val.indexOf("opera") > -1)

      {
			alert("1) From the browser menu,Select Tools\n\n2) Select Preferences\n\n 3) In the General tab's Home Page entry box, click on 'Use Current' button and click OK");

       }

	else if(val.indexOf("chrome") > -1)

       {
			alert("1) Click on the Chrome 'wrench' icon, located in the upper right hand corner of your browser window.\n\n2) When the drop-down menu appears, select the choice labeled 'Options'.\n\n3)In the Basics tab's second item in the Home Page section is labeled 'Open this page', select this option and type 'http://www.forerez.in' to set this as your home page,and click on the 'Close' button.");
      }

     else if(val.indexOf("safari") > -1)

       {
			alert("1) From the browser menu, click Edit\n\n2) Select Preferences\n\n3) In the General tab's Home Page entry box, click on 'Set to Current page' button and you're done!");

      }

	/*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 forerez.com and click OK");
	}
	else
	{
		alert('To set forerez.com as your home page in Firefox, click and drag the button to the "Home" icon in your browser.');
	}*/
	return false;
}
function setBrowser() 
{
    var action = document.getElementById('sethomepage_new');
    if (!isMozilla) {
        action.innerHTML = '<a href="http://www.forerez.in" style="font-size: 10px; font-family: verdana; line-height:14px;" onClick="return setHome();">Make forerez your homepage</a>';
    }
    if (isMozilla) {
        action.innerHTML = '<a href="http://www.forerez.in" style="line-height:14px; font-size: 10px; font-family: verdana;" onClick="return firefoxAlert();" id="firefoxlink">Make forerez your homepage</a>';
        var firefoxlink = document.getElementById('firefoxlink');
        firefoxlink.onmousedown = function() {
            isBeingDragged = true;
        }
    }
    window.onmouseup = function() {
        isBeingDragged = false;
    }
}
