function anatomyimage(imagename,pagename,features,desc)
	{
		
		newWindow = window.open("","",features);

		if (newWindow != null)
		{
			newWindow.document.write('<html>');
			newWindow.document.write('<head><LINK REL="stylesheet" TYPE="text/css" HREF="/ppdocs/us/cns/css/style_font.css"/>');
			newWindow.document.write('<title>' + pagename + '</title></head>');
			newWindow.document.write('<body>');
			newWindow.document.write('<p><div align="center"><img src="/ppdocs/us/cns/content/atoz/images/javascript/' + imagename + '" border="0"/></div></p>');
			newWindow.document.write('<p>' + desc + '</p>');
			newWindow.document.write('<p align="right"><a href="javascript:self.close()"><b>Close</b></a></p>');
			newWindow.document.write('</body></html>');
		}
	}
	
	
function f1(defination,defName)
	{
		
		newWindow = window.open("","","toolbar=no,menubar=no,scrollbars=no,resizable=no,width=400,height=100");
				
		if (newWindow != null) 
		{
			newWindow.document.write('<HTML>');
			newWindow.document.write('<TITLE>' + defName);
			newWindow.document.write('</TITLE><BODY BGCOLOR="FFFFDF">');
			newWindow.document.write('<FONT SIZE="2" FACE="Arial">');
			newWindow.document.write('<B>' + defination);
			newWindow.document.write(' </B></FONT><P></P>');
			newWindow.document.write('</BODY></HTML>');
		}
	}
	

