// JavaScript Document
 <!-- Begin
 	// Random taglines
	var lastoffset = -1;
	var messagecount = 6;
	var taglines = new Array(messagecount);
	taglines[0] = "Take the First Step to a Service Oriented Architecture";
	taglines[1] = "Integrate Relational Data into your Service Oriented Architecture";
	taglines[2] = "Get the simplicity of Basic with the power and portability of Java";
	taglines[3] = "Don't Delay Using Web Services For Your Next Generation Systems";
	taglines[4] = "Get the most from your investment in Visual Studio .NET";
	taglines[5] = "Access and update your relational databases as a transactional Web Service";
	function getTagLine()
	{
		var randomoffset = -1;
		while (1 == 1)
		{	// % modulus intrinsic does not appear to work deterministically
			randomoffset = parseInt(Math.random()*(messagecount));
			if (randomoffset < 0 || randomoffset > (messagecount - 1) || isNaN(randomoffset))
			{
				continue;
			}
			if (randomoffset != lastoffset)
				break;
		}
		lastoffset = randomoffset;
		return taglines[randomoffset];
	}
//-->
