
function viewDocument(f,s,w,req_id)
{
	if (!(s.selectedIndex==0)) 
		{
		closePopUp(w);
		specification = 'menubar=no,scrollbars=yes,resizable=yes,width=550,height=280,left=50,top=50';
		proWindow=window.open('PleaseWait.asp','newWindow',specification);
		window.document.frmLogin.docID.value=req_id;
		f.submit()
		}
}

function openLogin(d,w)
{
	closePopUp(w);
	specification = 'menubar=no,scrollbars=yes,resizable=yes,width=550,height=280,left=50,top=50';
	proWindow=window.open('PleaseWait.asp','newWindow',specification);
	document.frmLogin.docID.value=d;
	document.frmLogin.submit();
}

function viewLinkOrLogin(f,s,d,w)
{
	if (!(s.selectedIndex==0)) 
	{
		closePopUp(w);
		specification = 'menubar=no,scrollbars=yes,resizable=yes,width=550,height=280,left=50,top=50';
		proWindow=window.open('PleaseWait.asp','newWindow',specification);
		teststr=s[s.selectedIndex].value;
		if (teststr.substr(teststr.length-1)=='d') 
		{
			document.frmLogin.docID.value=d;
			document.frmLogin.submit();
		} 
		else 
		{
			f.submit()
		}
	}
}

