<!--
var inwinleft		=	screen.availWidth-(screen.availWidth - 100);
var inwintop		=	screen.availHeight-(screen.availHeight - 100);
var HelpPage, HelpWin = false;
function cmdHelp2(helpno)
{
	if (HelpWin && HelpWin.closed) 
		HelpWin=false;
	HelpPage="help.asp?DocID="+escape(helpno);
	if (HelpWin ) 
		HelpWin.location=HelpPage;
	else 
		HelpWin = window.open(HelpPage, 'helpWindow2', 'width=420,height=250,toolbar=0,location=0,directories=no,status=no,menuBar=no,scrollBars=yes,resizable=yes');
	HelpWin.focus();
}
function dm(msgStr) {
    window.status = msgStr;
    document.returnValue = true;
}
function dm1() {
    window.status = "Epson Where to Buy";
    document.returnValue = true;
}
function logoff(){
  theMsg = "Are you sure you want to log off  ?"
  if (confirm(theMsg))
	    location.replace("logoff.asp");
}
// -->
