function showCatalog(url) {
newwindow=window.open(url, "Entourage", config="location=0, directories=0, status=0, resizable=1, menubar=0, toolbar=0, scrollbars=0, width=870,height=630");
if (window.focus) {newwindow.focus()}
return false;
}


if(typeof HTMLElement!='undefined'&&!HTMLElement.prototype.click)
HTMLElement.prototype.click=function(){
var evt = this.ownerDocument.createEvent('MouseEvents');
evt.initMouseEvent('click', true, true, this.ownerDocument.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
this.dispatchEvent(evt);
}


