﻿/**------------------
* Google Search Section, used in home page menu bar
------------------- */
function goSearch(searchbox)
{
    var KeyWords = '';
    var SearchOption = 'web';
    var URLRedirTo = 'http://www.mywestnet.com.au';

    if (searchbox == 'top') {
        KeyWords = document.getElementById('txtSearch').value;
        if (document.getElementById('rdAustralia').checked) {
            SearchOption = 'au';
        }
        if (document.getElementById('rdWestnet').checked) {
            SearchOption = 'wn';
        }
    }
    else {
        KeyWords = document.getElementById('txtSearch2').value;
        if (document.getElementById('rdAustralia2').checked) {
            SearchOption = 'au';
        }
        if (document.getElementById('rdWestnet2').checked) {
            SearchOption = 'wn';
        }
    }

    if (SearchOption == 'web')
        URLRedirTo = 'http://search.mywestnet.com.au/search.aspx?q=' + escape(KeyWords);
    if (SearchOption == 'au')
        URLRedirTo = 'http://search.mywestnet.com.au/search.aspx?s=au&q=' + escape(KeyWords);
    if (SearchOption == 'wn')
        URLRedirTo = 'http://search.mywestnet.com.au/search.aspx?s=wn&q=' + escape(KeyWords);

    window.document.location = URLRedirTo;
}

/**------------------
* function for default submit button - used when more than one button exist on the page
------------------- */
function clickButton(e, buttonid)
{
var btn = document.getElementById(buttonid);
if (typeof btn == 'object'){
		if(navigator.appName.indexOf("Netscape")>(-1)){
			if (e.keyCode == 13){
					btn.click();
					return false;
			}
		}
		if (navigator.appName.indexOf("Microsoft Internet Explorer")>(-1)){
			if (event.keyCode == 13){
					btn.click();
					return false;
			}
		}
	}
} 
