<!--
function otherWebsites() {
		
	var arrSites = new Array(
		new Array('http://www.educationfoundation.org.au/backtoschoolday', 'Back to School Day'),
		new Array('http://www.educationfoundation.org.au/', 'Education Foundation'),
		new Array('http://www.educationfoundation.org.au/kidsandcommunity/', 'Kids and Community'),
		new Array('http://www.rumad.org.au/', 'ruMAD'),
		new Array('http://www.thecitycentre.org.au/', 'The City Centre')

	);

	with (document) {
		write('<table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#E0E0E0">');
		write('<tr><form name="frmRedirect">');
		write('<td width="25"><img src="/images/blank.gif" width="25" height="33"></td>');
		write('<td><img src="/images/ef_kcd.gif" width="167" height="33"></td>');
		write('<td width="100%"><img src="/images/blank.gif" width="1" height="33"></td>');
		write('<td >');
									
			
				
		write('<select name="cboRedirect" class="quicklinks" onChange="javascript:redirect(document.frmRedirect)">');
				
		write('<option>Other EF Websites</option>');
		write('<option>--------------</option>');

		for (var i = 0; i < (arrSites.length); i++) {
			write('<option value="' + arrSites[i][0] + '">' + arrSites[i][1] + '</option>');
		}


		write('</select>');
									
									
		write('</td>');
		write('<td width="10"><img src="/images/blank.gif" width="10" height="33"></td>');
		write('</tr></form>');
		write('</table>');
	}
}

function redirect(objForm) {
	var strURL = objForm.cboRedirect.options[objForm.cboRedirect.selectedIndex].value;


	if (strURL != '') {
		if (window != top) {
			top.location.href = strURL;
		} else {
			window.location.href = strURL;
		}
	}
	
	return false;
}

otherWebsites();
//-->






//-->
