﻿var addHomePage='http://javanemrooz.com';
function makehome()
{
       theobj = document.anchors[0];  
       theobj.style.behavior='url(#default#homepage)';
       theobj.setHomePage(addHomePage);
}


function doSearch()
{
    var _searchBox = document.getElementById("ctl00_TBX_SearchWords");
    window.location.href = "/search/default.aspx?Page=1&Words=" + escape(_searchBox.value) + "&in=Article";
}

function isEnterPressed(e)
{
	var _char
	if(e && e.which)
	{
		e = e;
		_char = e.which; // NN4 specific code
	}
	else
	{
		e = event;
		_char = e.keyCode; // IE specific code
	}
	if(_char == 13) return true;   // Enter key is 13
	else return false;
};

