
function ccmbtest() 
 {
    alert('ccmbtest run');
 }


mywin = null;


function showimg(imgname) {
   w=700;
   h=600;
   if (mywin == null) {	
   mywin=window.open('',imgname,'toolbar=no,scrollbars=yes,width='+(w+15)+',height='+(h+15)+',location=no,directories=no,status=no,menubar=no,resizable=no');
   }
   newdoc=mywin.document;
   newdoc.write('<HTML>');
   newdoc.write('<HEAD>');
   newdoc.write('</HEAD>');
   newdoc.write('<BODY bgcolor="#909090">');
   newdoc.write('<TABLE border=0 width="100%" height="100%"><TR>');
   newdoc.write('<TD width="100%" height="100%" valign="center" align="center">');
   newdoc.write('<IMG src=' + imgname +'.gif>');
   newdoc.write('</TD></TR></TABLE>');
   newdoc.write('</BODY>');
   newdoc.write('</HTML>');
   newdoc.close();
}



