// this function tests the password and opens the pdf window

<!--
function openDownload(url, pswd) 
{

var str = pswd.value

if (str=="test")
	{

	window.open('samplepdf.pdf','DownLoading','toolbar=0','menubar=0','resizable=yes,width=300,height=150')


	}
	else	{
				alert("The password is incorrect!")
				pswd.value = ""
				pswd.focus()
			}		
	
}

-->