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


mywin = null;
popwin = null;

function shownw(pg) {
   w=700;
   h=600;
   if (mywin == null) {	
   mywin=window.open('',pg,'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=' + pg +'.gif>');
   newdoc.write('</TD></TR></TABLE>');
   newdoc.write('</BODY>');
   newdoc.write('</HTML>');
   newdoc.close();
}




function popwindow(href) {
   w=460;
   h=380;
   popwin=window.open(href,'popw','toolbar=no,scrollbars=yes,width='+(w+15)+',height='+(h+15)+',location=no,directories=no,status=no,menubar=no,resizable=no');
   popwin.focus();   	
}


function photowindow(href) {
   w=640;
   h=640;
   popwin=window.open(href,'popw','toolbar=no,scrollbars=yes,width='+(w+15)+',height='+(h+15)+',location=no,directories=no,status=no,menubar=no,resizable=no');
   popwin.focus();   	
}


function bigpopwindow(href) {
   w=560;
   h=500;
   popwin=window.open(href,'popw','toolbar=no,scrollbars=yes,width='+(w+15)+',height='+(h+15)+',location=no,directories=no,status=no,menubar=no,resizable=no');
   popwin.focus();   	
}



