<!--


function show_coup(cNum){
 var w = 500;
 var h = 400;
 var winl = (screen.width - w) / 2;
 var wint = (screen.height - h) / 2;
 var url = "show_coup.cgi?"+cNum;

 winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=0,resizable=0'
 window.open(url,"vW", winprops);
}

//-->