function showhide(id){
if (document.getElementById){
obj = document.getElementById('manprc' + id);
if (obj.style.display == "none"){
obj.style.display = "";
document.getElementById('manprclnk' + id ).style.display = "none";
} else {
obj.style.display = "none";
document.getElementById('manprclnk' + id ).style.display = "";
}
}
} 

function popUp(page,PWidth,PHeight,id) {
 eval("fineline"+id+"=window.open('"+page+"','fineline','toolbar=0,scrollbars=0,location=0,status=0,menubars=0,resizable=0,width="+PWidth+",height="+PHeight+"')")
eval("fineline"+id+".window.moveTo((screen.width/2)-(PWidth/2),(screen.height/2)-(PHeight/2))")
}
