// prodpage image switcher naughtily bunged in here //
function switchImg(theimg) {
	document.getElementById('MainImg').src="/prodbig/" + theimg + ".jpg";
	document.getElementById('curimg').value=theimg;
	return false;
}

function popEnlarge() {
	theimg = document.getElementById('curimg').value;
	var fin=window.open('enlarge.asp?img='+theimg,'popup_product','toolbar=no,status=no,resizable=no,menubar=no,scrollbar=no,width=550,height=600,left=10,top=10'); fin.focus(); return false;
	return false;
}

function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external")
		anchor.target = "_new";
	}
}
window.onload = externalLinks;

