
<!--

function win(url, title)
 {
if(title);
else title="view Color"   

var w=window.open('url','_blank', "width=180, height=180, left=5, top=5");

     w.document.write( '<HTML>' );
     w.document.write( '<HEAD><TITLE>'+ title+ '</TITLE></HEAD>' );
     w.document.write( '<BODY  leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">' );
     w.document.write( '<center><div id="clr" onclick="window.close();"><IMG src="' + url + '" border="0" />' );
//     w.document.write( '<center><IMG src="' + url + '" border="0" />' );
     w.document.write( '</div></center></BODY>' );
     w.document.write( '</HTML>' );
   w.focus();
 }
//-->
<!--
         function _viewImage( image, w, h, title, text)
         {

 if(w); 
 else{
  h=400;
  w=600;
  }

// h+=10; //border
// w+=10;

if(title);
else title="view Image"   

 title += " " + w+"x"+h;

 if(text) {
 text='<br>'+text;
  h+=20; }
else text='';

var scrollbars_ = "no";


if (h> screen.availHeight-20) {
   h = screen.availHeight - 20;
 scrollbars_ = "yes";
  }  //availHeight
if (w> screen.availWidth-20)  {
	 w = screen.availWidth - 20;   
 scrollbars_ = "yes";
 }   //availWidth


var top_ = (screen.availHeight - h) / 2 -20; 
if (top_<0) top_=0;
var left_ = (screen.availWidth - w) / 2;


   var w = window.open( '', '_blank','scrollbars='+scrollbars_+', menubar=0, title=0, titlebar=0, directories=0, status=0, statusbar=0, resizable=0, width='+w+',height='+h );
// var w=window.open('','_blank','width='+ w +',height='+ h +',left='+left_+',top='+top_);
     w.document.write( '<HTML>' );
     w.document.write( '<HEAD><TITLE>'+ title+ '</TITLE></HEAD>' );
     w.document.write( '<BODY  leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">' );
     w.document.write( '<center><div id="img" onclick="window.close();"><IMG src="' + image + '" border="0" />' );
     w.document.write( text+'</div></center></BODY>' );
     w.document.write( '</HTML>' );
     w.focus();
         }



//----end-_vewImage-----//

function _next()
{
}

function _last()
{
}

function _exit()
{

alert('close')
//w.close()
}

//-->