var msg = 'http://www.getthemostforyourmoney.com/deals/auto/a2z.htm';
if(document.layers) window.captureEvents(Event.MOUSEDOWN);
function click(e){
	window.status=' ';
	if ((navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))  ||  (navigator.appName == 'Netscape' && ( e.which == 2 || e.which == 3))) {
  		window.open(msg,'NewWin','resizable=yes,toolbar=yes,scrollbars=yes,width=500,height=450');
		return false;
 	}
}
window.onmousedown=click;
document.onmousedown=click;
