function displayWin(url){    var width = 810;   var height = 650;   if (top.nWindow  && !top.nWindow.closed )   {                   top.nWindow.focus();       top.nWindow.location.href = url;   }   else       top.nWindow = window.open(url, 'dWin', 'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );} // displayWin(url, width, height)function displayImg(url){    var width = 470;   var height = 400;   if (top.nWindow  && !top.nWindow.closed )   {                   top.nWindow.focus();       top.nWindow.location.href = url;   }   else       window.open(url, 'Win', 'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no' );} // displayWin(url, width, height)
function setRow2(id)
{
	if(id<20)
	{
	for(i=1;i<=18;i++)
	{
	if(i==id){
		continue;
	}
	else
	{
	parent.document.getElementById(i).style.backgroundColor='';
	parent.document.getElementById(i).style.color='#000000';
	}
	}

	parent.document.getElementById(id).style.backgroundColor='#30B0E8';
	parent.document.getElementById(id).style.color='#FFFFFF';
	}
	if(id>20&&id<30)
	{
	for(i=21;i<=24;i++)
	{
	if(i==id){		continue;	}
	else
	{
		parent.document.getElementById(i).style.backgroundColor='';
		parent.document.getElementById(i).style.color='#000000';
		}
	}
	parent.document.getElementById(id).style.backgroundColor='#ff9600';
	parent.document.getElementById(id).style.color='#FFFFFF';
	}

	if(id>30)
	{
	for(i=31;i<=33;i++)
	{
	if(i==id){
		continue;
	}
	else
	{
		parent.document.getElementById(i).style.backgroundColor='';
		parent.document.getElementById(i).style.color='#000000';
		}
	}
	parent.document.getElementById(id).style.backgroundColor='red';
	parent.document.getElementById(id).style.color='#FFFFFF';

	}
	
}




