function doprint()
			{ 
				var disp_setting = "toolbar=no,location=no,directories=no,menubar=no,"; 
				disp_setting += "scrollbars=yes,width=650, height=600, left=100, top=25"; 
				var content_vlue = document.getElementById("print_content").innerHTML; 
				
				var docprint ;
				docprint = window.open("","",disp_setting); 
				docprint.document.open(); 
				docprint.document.write('<html><head><title>GAIL</title>'); 
				docprint.document.write('<LINK href=style/gailprint.css rel=STYLESHEET type=text/css>'); 
				docprint.document.write('</head><body onLoad="self.print()">');  
				//docprint.document.write('<center><input type=button name=print value="Print" onclick="self.print()"></center><br>');        
				docprint.document.write('</head><body>');          
				docprint.document.write(content_vlue);          
				docprint.document.write('</body></html>'); 
				//docprint.document.write('<br><center><input type=button name=print value="Print" onclick="self.print()"></center></body></html>'); 
				docprint.document.close(); 
				docprint.focus(); 
			}
function showimg(imgObj)
			{ 
				var disp_setting = "toolbar=no,location=no,directories=no,menubar=no,"; 
				disp_setting += "scrollbars=yes,width=650, height=600, left=100, top=25"; 
				var imgname;
				imgname = imgObj.src;
				imgname = imgname.substring(0,imgname.length - 4) + "_p.jpg";
			
				var content_vlue = "<img src=" + imgname + " border=0>";
				
				var docprint ;
				docprint = window.open("","",disp_setting); 
				docprint.document.open(); 
				docprint.document.write('<html><head><title>GAIL</title>'); 
				docprint.document.write('<LINK href=style/gailprint.css rel=STYLESHEET type=text/css>'); 
				docprint.document.write('</head><body >');  
				docprint.document.write('</head><body>');          
				docprint.document.write(content_vlue);          
				docprint.document.write('</body></html>'); 
				docprint.document.close(); 
				docprint.focus(); 
			}

function showimgnew(imgObj)
			{ 
				var disp_setting = "toolbar=no,location=no,directories=no,menubar=no,"; 
				disp_setting += "scrollbars=yes,width=650, height=600, left=100, top=25"; 
				var imgname;
				var imgname = "images/" + imgObj;
				//imgname = imgObj.src;
				//imgname = imgname.substring(0,imgname.length - 4) + "_p.jpg";
			
				var content_vlue = "<img src=" + imgname + " border=0>";
				
				var docprint ;
				docprint = window.open("","",disp_setting); 
				docprint.document.open(); 
				docprint.document.write('<html><head><title>GAIL</title>'); 
				docprint.document.write('<LINK href=style/gailprint.css rel=STYLESHEET type=text/css>'); 
				docprint.document.write('</head><body >');  
				docprint.document.write('</head><body>');          
				docprint.document.write(content_vlue);          
				docprint.document.write('</body></html>'); 
				docprint.document.close(); 
				docprint.focus(); 
			}
		
function dofaq()
{
}

function domailto()
{
}

var objSelMenu;
var objRselMenu;

function changecolor(rowObj)	
{
	rowObj.style.cursor = 'hand';
if  (rowObj != objSelMenu)
	{
		if (rowObj.className == "divlmenu") 
			{
				rowObj.className = "divbmenu";
			} 
			else
			{
				rowObj.className = "divlmenu";
			}
	}		
}
function changeRcolor(rowObj)
{
	rowObj.style.cursor = 'hand';
		if  (rowObj != objRselMenu) 
			{
				if (rowObj.className == "divlmenu") 
					{
					rowObj.className = "divbmenu";
					} 
				else 
				{
				rowObj.className = "divlmenu";
				}

			}		
}

function gotoPage(strUrl)
{
	document.location = strUrl;
}

function doPopup(strUrl)
{
	var disp_setting = "toolbar=no,location=no,directories=no,menubar=no,"; 
	disp_setting += "scrollbars=yes,width=650, height=600, left=100, top=25"; 
	var content_vlue = document.getElementById("print_content").innerHTML; 
	
	var docprint ;
	docprint = window.open(strUrl,"",disp_setting);
}

function init(selRow,RselRow){
	 objSelMenu = document.getElementById(selRow);
	 objSelMenu.className = "divlmenu";
if (RselRow != "")
{		
	//objRselMenu = document.getElementById(RselRow);
	//objRselMenu.className = "divlmenu";
	
}
if (RselRow == "")
{		
	objRselMenu = document.getElementById(RselRow);
	objRselMenu.className = "divlmenu";
	
}
}
