	<!--
		function launch ( url, type ) {
		// type 2 = 800 x 600 screen
		// url = launcher code to launch game


		var options = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=1,top=0,left=0,";
	
		switch(type){
			case 2:
				width = 791;
				height = 550; 
				break;
			}
		options = options + "width=" + width + ",height=" + height
		window.open( url ,"iafArcade",options)

		}
	
	// -->

