function GoTo(url) {
	document.writeln ("<html>");
	document.writeln ("<head>");
	document.writeln ("<title>The Kiosk Factory</title>");
	document.writeln ("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>");
	document.writeln ("</head>");
	document.writeln ("<frameset rows='130,*' frameborder='NO' border='0' framespacing='0' cols='*'> ");
	document.writeln ("<frame name='topFrame' scrolling='NO' noresize src='quickbar.html'>");
	document.writeln ("<frame name='mainFrame' src='" + url + "'>");
	document.writeln ("</frameset>");
	document.writeln ("<noframes><body bgcolor='#FFFFFF' text='#000000'>");
	document.writeln ("</body></noframes>");
	document.writeln ("</html>");
	return true; 
}
