﻿function bodyOnload() {


	document.getElementById('msviLSBtbox').value = 'Search Microsoft.com';
	//document.getElementById('msviLSBtbox').focus();
var setFocus = document.aspnetForm.FocusImgId;
document.getElementById('msviLSBtbox').style.color = "#a1a1a1";
document.getElementById('msviLSBtbox').style.fontStyle = "italic";
if (document.URL.search('pf=true') == -1) {
setFocus.focus();
setFocus.select();
}

var browserName = navigator.appName;
if (browserName == "Netscape") {
document.getElementById('mnp_tools_div').style.display = 'none'; 
}
}


function SendThisPage()
        {
    var url_lenght = document.URL.toString().split("/");
    var page_name = url_lenght[url_lenght.length-1].toString().split(".");
    window.location = "mailto:?subject=" + page_name[0] + "&body=" + document.URL;
}

function Search() {

    var searchText = document.getElementById('msviLSBtbox').value;
    if (searchText != '') {
        var url = "/Industry/government/Search.aspx?qu=" + document.getElementById('msviLSBtbox').value;
        window.location = url;
    }
    else {
        //alert('Please enter search text');
        var url = "/Industry/government/Search.aspx?qu=";
        window.location = url;
    }
}

function searchBoxFocus() {
    document.getElementById('msviLSBtbox').value = '';
    document.getElementById('msviLSBtbox').style.fontStyle = '';
    document.getElementById('msviLSBtbox').style.color = "#000000";
}

function searchLostFocus() {
    var searchTextVal = document.getElementById('msviLSBtbox').value;
    if (searchTextVal == '') {
        document.getElementById('msviLSBtbox').value = 'Search Microsoft.com';
        document.getElementById('msviLSBtbox').style.fontStyle = 'Italic';
        document.getElementById('msviLSBtbox').style.color = "#a1a1a1";
    }

}