// JavaScript Document
/*	TIGP JavaScript functions
	last modified:  12 january 2007
	by:  clt

*/

/* to launch a new window of specified dimensions */
	//source:  www.spoono.com/flash
	function fixedSize(url,name,features) {
		//This launches a new window and then
		//focuses it if window.focus() is supported.
		win = window.open(url,name,features);
	}
	


