	function setStatus( text )
	{
		window.setTimeout( 'window.status="' + text + '"', 1 );
		return true;
	}

	function openPopup(url,name)
	{
		h  = screen.height;
		w  = screen.width;
		
		if (w < (1150 + 70) ) {
			width =	w - 70;
		}
		else {
			width= 1150;
		}
		
		if (h < (800 + 100) ) {
			height= h - 100;
		}
		else {
			height= 800;
		}

		remote = window.open('',name,'width=' + width + ',height=' + height + ',left=0,top=0,resizable=no,scrollbars=yes');
		remote.location.href = url;
		if (remote.opener == null) remote.opener = window; 
		remote.opener.name = "opener";
	}
	
	function confirmLink(theQuery)
	{
		return confirm(theQuery);
			
	}
	
	function radioMatrixActivation()
	{
		document.amigene.AutoMatrix[1].checked=true;
	}
