//       (/)     [.com/]   

var URL = 'http://www.thjesht.com/';
var title="Thjesht.Com"


var popUp = document.getElementById("popupcontent");

function seeHomepage()
{
if (document.all)
	{
		document.body.style.behavior='url(#default#homepage)';
		if ( document.body.isHomePage(URL) == false)
		{
					showPopup(205,120);
					//document.getElementById("seticon").style.display="block";			
					
		}
	}
}

function setHomepage()
{
 if (document.all)
    {
        document.body.style.behavior='url(#default#homepage)';
  		document.body.setHomePage(URL);
  		
 
    }
    else if (window.sidebar)
    {
    if(window.netscape)
    {
         try
   {  
            netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");  
         }  
         catch(e)  
         {  
    alert("this action was aviod by your browser&#65292;if you want to enable&#65292;please enter about:config in your address line,and change the value of signed.applets.codebase_principal_support to true");  
         }
    } 
    var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
    prefs.setCharPref('browser.startup.homepage',URL);
    
 }
}


function addbookmark(){
		if (document.all)
		window.external.AddFavorite(URL,title)
		
		}
		


function hidePopup()
{
	document.getElementById("popupcontent").style.visibility = "hidden";
}


var baseText = null;
function showPopup(w,h)
{
   var popUp = document.getElementById("popupcontent");
   popUp.style.top = "200px";
   popUp.style.left = "200px";
   popUp.style.width = w + "px";
   popUp.style.height = h + "px";
   if (baseText == null)
   baseText = popUp.innerHTML;
   popUp.innerHTML = baseText +       "<a href=\"javascript:setHomepage()\"><img src=\"makehome.gif\"  border=\"0\" /></a></td></tr></table>";
   
   
   popUp.style.visibility = "visible";
}