//Pops up a window to view and download a doc
function PopUpDoc(docTitle, docFile)
{
	var url = "../pubs/consentpub.asp?t=" + escape(docTitle) + "&d=" + escape(docFile);
	//alert(url);
	w = window.open(url,'ViewDoc','scrollbars=yes,width=525,height=350');
	if (w)
		w.focus();
	
}

//Pops up a window to view and download a doc
function PopUpViewDoc(docTitle, docFile)
{
	var url = "../pubs/viewpub.asp?t=" + escape(docTitle) + "&d=" + escape(docFile);
	//alert(url);
	w = window.open(url,'ViewDoc','scrollbars=yes,width=525,height=350');
	if (w)
		w.focus();
	
}