function addPopLink() {
	if (!document.getElementById) return false;
	if (!document.getElementById("kitThumb")) return false;
	var link = document.getElementById("kitThumb");
	link.onclick = function() {
		pop=window.open(this.href,'popWindow','toolbar=no,location=yes,menubar=yes,scrollbars=yes,resizable=yes,width=678,height=560'); pop.focus(); return false;
	}
}

window.onload = function() {
	addPopLink();
}

