/* File containing Java functions used within the HD Website


	Created : 5 October 2006
	Updated :
		

*/

/* Function used to display a popup window with the passed text*/

function popup(words)
	{
		win2 = window.open("","","width=350, height=200,left=200,top=50")
		win2.document.write( "<H3>" + words + "</H3>")
		/*win2.document.write("<A onMouseOver = 'self.close()'>Close this Popup</A>")*/
	}


