function openPDFWithParams(PDFName, Height, Width) {
			var strFeature;
			strFeature =  'width=' + Width + ',height=' + Height;
			window.open('PDFViewer.aspx?PDF=' + PDFName, 'PDFViewer', strFeature );
			

}

function openPDF(PDFName)
{
		openPDFWithParams(PDFName,600,800)

}
function SetNav(sPage)
{
	document.SelectedPage = sPage;
}
