// JavaScript Document
//Practice

function show_SYLLABUSbeginner()
	{
		var code=prompt("Please enter the password","PASSWORD");
		if (code=="beginner2009")
		{
  			document.location.href="documents/WI09Beginner_syllabus.doc";
  		}
	}

function show_SYLLABUSintermediate()
	{
		var code=prompt("Please enter the password","PASSWORD");
		if (code=="intermediate2009")
		{
  			document.location.href="documents/WI09Intermediate_syllabus.xls";
  		}
	}
	
function show_SYLLABUSadvance()
	{
		var code=prompt("Please enter the password","PASSWORD");
		if (code=="advance2009")
		{
  			document.location.href="documents/WI09Advance_syllabus.doc";
  		}
	}
	
//<input type="button" onclick="show_prompt()" value="Class Syllabus" />