
function Hi(Element) {
    Element.style.backgroundColor = "#9F9F9F";
    if(navigator.appVersion.indexOf('6.0') != -1) {
		Element.style.cursor = 'pointer';
    } else {
      Element.style.cursor = 'default';
    }
}

function Lo(Element) {
    Element.style.backgroundColor = "#FFFFFF";
    if(navigator.appVersion.indexOf('6.0') != -1) {
      Element.style.cursor = 'default';
    }
}

function Go(URL) {
	location.href = URL;
}