// JavaScript Document
function gotoDetail(iCardID) {
	var iHeight = 460;
	var iWidth = 532;
	var iLeft = (screen.width - iWidth) / 2;
	var iTop = (screen.height - iHeight) / 2;
	winPopup = window.open("/dspCardDisplayPopup.cfm?cid="+iCardID, "detailWindow", "width="+iWidth+",height="+iHeight+",top="+iTop+",left="+iLeft)
}
