/***************************/
//@Author: Eric Plugge
//@website: www.dreamlogic.nl
//@email: info(@)dreamlogic.nl
//@license: Feel free to use it, but keep this credits please!					
/***************************/

// 1=open CBIRDS, 2=Open Error File, 3=Show message 
function CBIRDSonline( errorFile )
{
	var number=2
	if (number == 1 )
	   {
		   window.open( 'http://dreamlogic.dyndns-web.com/scripts/cbirds.wsc/cbirds.html' );
	   }
	else if (number == 2 )
	   {
		   window.open( 'http://www.dreamlogic.nl/cbirds/cbirds.html' );
	   }
	else
	   {
		   alert("Sorry, CBIRDS is currently only available on demand.\nPlease try again later or contact DreamLogic Support for details.");
	   }
} 

