function openImg(id,w,h,case_no)
{
var str = '/fullimage/?id='+id+'&w='+w+'&h='+h+'&case_no='+case_no;
var name = navigator.appName;
if(name == "Opera"){
 w=w+14;
 h=h+46;
}
else if(name == "Microsoft Internet Explorer"){

 w=w+24;
 h=h+56;
}
else if(name == "Netscape"){
 w=w+18;
 h=h+24;
}
else{
 w=w+22;
 h=h+56;
}

viewer = window.open(str, "window", "width="+w+", height="+h+", toolbar=no,status=no,top=100,left=100,scrollbars=no,menubar=no,resizable=yes");
}


function goImg(id)//for view images from man dir
{
var str = '/fullimage/show.php?id='+id;
window.open(str, "window", "width=300, height=300, toolbar=no,status=no,top=100,left=100,scrollbars=no,menubar=no,resizable=yes");
}
