function PopWin(url,title,h,w) { 
	popupWin = window.open(url,title,'scrollbars=yes,resizable=yes,height=' + h + ',width=' + w);// ' + h + '
	
	popupWin.focus();
} 

function PopWinAdv(url,title,h,w,location,menu,scrollon,resize,toolbar,status) {
	popupWin = window.open(url, title, 'location='+location+',menubar='+menu+',toolbar='+toolbar+', scrollbars='+scrollon+', resizable='+resize+', height=' + h + ', width=' + w + ', top=140,left=190')// ' + h + '
//	if (popupWin.opener == null) popupWin.opener = self;
	popupWin.focus();
}

var currentID = 2;

function highlight(cellid,currentID)
{
  if(cellid!==currentID)
  {
    eval('document.getElementById("cell' + cellid + '").className = "button"');
  }
}

function markup()
{
  for(var i=1;i<5;i++)
  {
    eval('document.getElementById("cell' + i + '").className = "button_mo"');
  }
 markupselected(currentID);
}

function markupselected(cellid)
{
  eval('document.getElementById("cell' + cellid + '").className = "button"');
}