<!--
function WindowSpawn( file,width,height ) {
height=height + 18;
		var bigWindow = window.open( file,"Pict",'width=' + width + ',height=' + height
+ ',toolbar=no, scrollbars=no, directories=no, resizable=no,' );
			bigWindow.focus();
	}
-->