  ////////////////////////////////////////////////////////////////////////////////////////////////////
 //--------------------------------------------Tips Engine-----------------------------------------//
////////////////////////////////////////////////////////////////////////////////////////////////////

function calltip(width,height)
	{
		var TipPage    = new Array(); // Tips location defining
		    TipPage[0] = "tips/tip1.html";
		    TipPage[1] = "tips/tip1.html";
		    TipPage[2] = "tips/tip2.html";
		    TipPage[3] = "tips/tip3.html";
		    TipPage[4] = "tips/tip4.html";
		    TipPage[5] = "tips/tip5.html";

	i = Math.round(Math.random()*5); //The actual tips randomizer
	url = TipPage[i];
	var tipWindow = null;

	var SCRwidth  = (screen.width-width)/2;   // Here we get the screen height and width to use 
	var SCRheight = (screen.height-height)/2;  // them for centering the tips window, although it seem not to run in NS4...
	
	var tipWindow = window.open(url,"Tips",'width='+width+',height='+height+', top='+SCRwidth+', left='+SCRheight+', resizable=0, scrollbars=no, menubar=no, status=no' );
		
		if (parseInt(navigator.appVersion) > 3) //Focusing the tips window if it is called again...
			{	
				tipWindow.window.focus();
			}
		if (i==0) //This is for the dropping the TipPage[0] array. Otherwise we will get 'undefined', because we don't have such array number!
			{
				i++;
			}
	}
function moveover(message) //Status bar message displayer
	{
		window.status = message;
		setTimeout("erase()",2000);
	}

function erase() // Status bar message eraser
	{
		window.status="";
	}