function doPopups() {
  	if (!document.getElementsByTagName) return false;
  	var links = document.getElementsByTagName("a");
  	for (var i=0; i < links.length; i++) {
		if (links[i].className.match("image")) {
			links[i].onclick = function() {
				index = this.href.indexOf("_images");
				theTab = "http://www.stockmopar.com/supersize-image.php?image="+this.href.substring(index,this.href.length)+"&title="+document.title;
				//theTab = this.href.substring(0,23);
				this.href = theTab;
			}
		}
  	}
}
window.onload = doPopups;