Other question on the same theme. Why this doesn't work (I would expect
msgbox to jump on pressing Alt-L)?
function openNewLocation() {
alert("OK");
}
var ATags = document.getElementsByTagName("a");
var hrefArray = window.location.href.split("/");
hrefArray[hrefArray.length-1] = "gallery";
var imageHREF = hrefArray.join("/");
// window.open(this.href,'extern').focus();return false"
//
http://cingular.rbmfrontline.com/locations
for (var i = 0; i < ATags.length; i++)
{
tempElem = ATags[i];
if (tempElem.getAttribute("href") ==
"http://cingular.rbmfrontline.com/locations") {
tempElem.setAttribute("accesskey","L");
tempElem.setAttribute("onpress","javascript

penNe wLocation();");
}
};
Thanks for any reply?
Matej