//	JavaScript Functions
	function openWindow( url, winName, winAttr )
	{
		var popup = window.open( url, winName, winAttr );
	}
