// JavaScript Document
	
		function openwin(ht,w,h) 
		{   
		    var htmfile =ht+".htm";
			
 		   window.open(htmfile,'IndigenousHealth','width='+ w +',height='+ h +',left=50,top=50,location=no,menubar=no,resizable=no,toolbar=no,scrollbars=yes,titlebar=0');
		}

		
		function printPage() { print(document); }

	
		function disclaimer(w,h) 
		
		{ 
 		newWin=window.open('','item','width='+ w +',height='+ h +',left=50,top=50,location=no,menubar=no,resizable=no,toolbar=no,scrollbars=no,titlebar=1')
		newWin.document.write("<link href='indig.css' rel='stylesheet' type='text/css'><body>")
		newWin.document.write("<h2>Disclaimer:</h2> <p>The views expressed in this site are not necessarily <br> the view of the University or its employee's.</p>")
		newWin.document.write("<div align='center'><br><a href='javascript:window.close();'><img src='images/close_window.gif' width='100' height='20' border='0'></a></div></body>")
		newWin.document.close()
		} 

		function copyright(w,h) 
		
		{ 
 		newWin=window.open('','item','width='+ w +',height='+ h +',left=50,top=50,location=no,menubar=no,resizable=no,toolbar=no,scrollbars=no,titlebar=1')
		newWin.document.write("<link href='indig.css' rel='stylesheet' type='text/css'><body>")
		newWin.document.write("<h2>Copyright:</h2> <p> All information and data (including graphics) provided by the University and its staff on this Web server are, unless otherwise noted, copyright by the University of Tasmania, Australia. Unlimited distribution of University copyright material is permitted, but only if textual and graphic content is not altered and the source is acknowledged. The copyright in other material found on this server may be owned by other people, and you should get permission from them before distributing their material. © Copyright 1996, 1997, 1998, 1999, 2000 University of Tasmania.</p>")
		newWin.document.write("<div align='center'><br><a href='javascript:window.close();'><img src='images/close_window.gif' width='100' height='20' border='0'></a></div></body>")
		newWin.document.close()
		} 