﻿// JScript File
function ShowBookPageInfo(DocumentID)
{
	popUp = window.open('BookPageInfo.aspx?DocumentID=' + 
		DocumentID, null, 'width=800,height=600,left=0,top=0,scrollbars=yes,resizable=1');
}

function ShowDocumentInfo(DocumentID)
{
	popUp = window.open('DocumentInfo.aspx?DocumentID=' + 
		DocumentID, null, 'width=800,height=600,left=0,top=0,scrollbars=yes,resizable=1');
}

function ShowPartySearchReport()
{
	popUp = window.open('ReportViewer.aspx?ReportID=1', null, 'width=800,height=600,left=0,top=0,scrollbars=yes,resizable=1');
}

function ShowPopup(NavUrl)
{
	popUp = window.open(NavUrl, null, 'width=800,height=600,left=0,top=0,scrollbars=yes,resizable=1');
}





