function showDetails() {
	var ePrimary = document.getElementById('primary');
	if(!ePrimary) return;
	
	var cDetails = ePrimary.getElementsByTagName('A');
	if(cDetails) {
		for(var i=0; i<cDetails.length; i++) {
			if(cDetails[i].className.indexOf('showDetails') != -1) {
				cDetails[i].onclick = function() {
					if(typeof openWin == 'function') {
						openWin(this.href, '590', '500', 'yes');
						return false;
					}
				}
			}
		}
	}
}


if(typeof addEvent == 'function') {
	addEvent(window, 'load', showDetails);
}


