function displayTop()
{
	document.write ('<center>');
	
	document.write ('<br><table class="tabnav" width="100%" cellspacing="0">');
	document.write ('<tr width="380">');
	document.write (' <td class="tab" width="70"><a href="http://mountsage.com">Test Drill</a></td>');
	document.write ('<td width="10px"></td>');
	document.write ('<td class="tab" width="70"><a href="http://hindi.mountsage.com">Hindi</a></td>');
	document.write ('<td width="10px"></td>');
	document.write ('<td class="tab" width="70"><a href="http://spanish.mountsage.com">Spanish</a></td>');
	document.write ('<td></td>');
	document.write ('<td width="10px"></td>');
	document.write ('<td class="selectedTab" width="70">Hawks</td>');
	document.write ('<td width="10px"></td>');
	document.write ('</tr>');

	document.write ('<tr width="100%"><td bgcolor="#4682B4" colspan="8" height="10" align="right"><a href="mailto:webadmin@mountsage.com"><b><font color="white">mispanda@yahoo.com&nbsp;</font></b></a></td></tr>');
	document.write ('</table>');
	document.write ('</center>');
}


function getArguments()
{
	var urltext = document.location.href;
	var args = new Array();
	index = urltext.indexOf('?');
	if (index != -1)
	{
		paramStr = urltext.substring(index+1);
		values = paramStr.split('&');
		j = 0;
		for (i = 0; i < values.length; i++)
		{
			args[j++] = values[i].split('=');
		}
	}
	return args;
}

