
    
var win  = null
var win2 = null
var images;
var win2 = null

function popUp(imagename)


	{

		if(win2 != null)
		win2.close();
		images = new Image();
		images.src = imagename
		win2  = window.open('/includes/java/ImageView.asp','','menubar=no,scrollbars=no',width='1',height='1')
	}



function change(aCell,newClass) {
  aCell.className=newClass;
}

var rowsticky = false;

function highlight(therow)
 {

   theRows = therow.parentNode.parentNode.rows;
   for(x=0;x<theRows.length;x++)
   {
    if (theRows[x] == therow) 
     { 
       change(theRows[x],'cellSelected');    
     } 
    else 
     {
       change(theRows[x],'cellNormal');
     }
   }
}
