Where an order has been granted to stay a patent litigation pending the outcome of a reexamination of the patent-in-suit, there is little likelihood that patent owner will be able to successfully appeal the decision ordering the stay of litigation. Such orders are generally not appealable, because they are not considered final decisions. See Gould v. Control Laser Corp., 705 F.2d 1340 (Fed. Cir. 1983). There is an exception where the stay “effectively could put one of the appellants out of court” or if some “patent issue would escape review by a federal court if the case is stayed.” See Slip Track Sys., Inc. v. Metal-Lite, Inc., 159 F.3d 1337, 1340 (Fed. Cir. 1998).
// <![CDATA[
// <![CDATA[
top.docjs = this;
// This function goes to the next document in the View
function noNextViewDoc() {
alert(‘No Next Document’);
return;
}
// This function goes to the previous document in the View
function noPrevViewDoc() {
alert(‘No Previous Document’);
return;
}
// This function goes to the next document in the View
function no_next_doc_in_search_results() {
alert(‘This is the last document in your search results for this category.’);
return;
}
// This function goes to the previous document in the View
function no_prev_doc_in_search_results() {
alert(‘This is the first document in your search results for this category.’);
return;
}
// This function goes to the next document in the View
function no_next_doc_in_search_category() {
alert(‘This is the last document in your current search category.’);
return;
}
// This function goes to the previous document in the View
function no_prev_doc_in_search_category() {
alert(‘This is the first document in your current search category.’);
return;
}
//This function takes the user to the first hit of this document
function goto_first_hit() {
var anchor_length = document.anchors.length;
var found = false;
for (i=0; i < anchor_length; i++) {
if (document.anchors[i].name == “ctx1”) {
found = true;
}
}
if (found) {
document.location.hash = “ctx1”;
} else {
alert(“This document is the first hit. Use Next Doc to progress through your search results list..”);
}
return;
}
function next_hit(cur_hit) {
hit = cur_hit + 1;
if (top.docjs.total_hits && (cur_hit < top.docjs.total_hits)) {
document.location.hash = “ctx” + hit;
} else {
if (top.docjs.next_doc_in_search_results) {
top.document.location.href = top.docjs.next_doc_in_search_results;
}
}
}
function prev_hit(cur_hit) {
hit = cur_hit – 1;
document.location.hash = “ctx” + hit;
}
function new_next_hit() {
if (top.hldoc && top.hldoc.cur_hit) {
this_hit = top.hldoc.cur_hit;
} else {
this_hit = 0;
top.hldoc.cur_hit = 0;
}
next_hit = this_hit + 1;
if (top.docjs.total_hits) {
if (this_hit < top.docjs.total_hits) {
document.location.hash = “ctx” + next_hit;
if (this_hit != 0)
{
document.getElementById(“idctx” + this_hit).className = “display_hl_text”;
}
document.getElementById(“idctx” + next_hit).className = “display_hl_text_active”;
top.hldoc.cur_hit++;
} else {
if (top.docjs.next_doc_in_search_results) {
top.document.location.href = top.docjs.next_doc_in_search_results;
}
}
} else {
alert(“Please let the whole page load before using this feature.”);
top.document.location.reload(true);
}
}
function new_prev_hit() {
if (top.hldoc && top.hldoc.cur_hit) {
this_hit = top.hldoc.cur_hit;
} else {
this_hit = 0;
top.hldoc.cur_hit = 0;
}
prev_hit = this_hit – 1;
if (prev_hit >= 1) {
document.location.hash = “ctx” + prev_hit;
document.getElementById(“idctx” + this_hit).className = “display_hl_text”;
document.getElementById(“idctx” + prev_hit).className = “display_hl_text_active”;
top.hldoc.cur_hit–;
} else {
if (top.docjs.prev_doc_in_search_results) {
top.document.location.href = top.docjs.prev_doc_in_search_results;
}
}
}
function no_search_results() {
alert(‘Your search results are not in your user session.\nYou will need to re-execute your query to use this functionality’);
return;
}
// ]]>// <![CDATA[
// <![CDATA[
var search_template = “/iplw/5000/search_doc_hit_highlight.adp”;
// ]]>// <![CDATA[
// <![CDATA[
var product = “iplw”;
var personalization_allowed = false;
// ]]>// <![CDATA[
// <![CDATA[
function getFavoriteDocName( ) {
top.smallPopUp(‘/iplw/core_adp/get_favorite_doc_name.adp’, 360, 250);
}
function trimwhitespaces(str) {
while (str.charAt(0)==’ ‘)
str = str.substring(1,str.length);
while (str.charAt(str.length-1)==’ ‘)
str = str.substring(0,str.length-1);
return str;
}
function saveDoc() {
if( document.getDocName.name.value == “” ) {
alert(“You must enter a name in order to save a document to your Favorite Document List.”);
return false;
} else {
var aName = trimwhitespaces(document.getDocName.name.value);
if ( aName.length == 0 ) {
alert(“You must enter at least one alphanumeric char for the document name.”);
return false;
} else {
document.getDocName.name.value = aName;
document.getDocName.docid.value = “[bwd::get_cgi_var docid]”;
if (window.opener.data) {
document.getDocName.calling_url.value = window.opener.data.document.location.href;
} else if (window.opener) {
document.getDocName.calling_url.value = window.opener.document.location.href;
} else {
document.getDocName.calling_url = “[bwd::get_cgi_var calling_url]”
}
for (i = 0; i < document.getDocName.elements.length; i++) {
if (document.getDocName.elements[i].name == “hpage”) {
if (document.getDocName.elements[i].checked) {
document.getDocName.dhpage.value = “Y”;
} else {
document.getDocName.dhpage.value = “N”;
}
}
}
document.getDocName.action = “/iplw/core_adp/save_favorite_doc_name.adp”;
return true;
}
}
}
function get_selected_docName_value() {
if( document.docList ) {
if( document.docList.numDoc.value == 1 ) {
return(document.docList.selectedDoc.value);
} else {
for( i=0; i<document.docList.numDoc.value; i++ ) {
if( document.docList.selectedDoc[i].checked ) {
return (document.docList.selectedDoc[i].value);
}
}
}
return(“”);
} else {
return(“”);
}
}
function get_selected_doc_list(action) {
var count=0;
var i=0;
if (document.docList) {
for (i = 0; i < document.docList.elements.length; i++) {
var elementType = document.docList.elements[i].type;
if (document.docList.elements[i].name.substring(0,6) == action &&
elementType.toLowerCase() == “checkbox” &&
document.docList.elements[i].checked) {
count++;
}
}
}
return (count);
}
function delete_favorite_doc() {
var count=get_selected_doc_list(“delete”);
if (count == 0) {
alert(“Please select a document to delete.”);
} else {
document.docList.calling_url.value = this.document.location.href;
document.docList.action = “/iplw/core_adp/delete_favorite_doc.adp”;
document.docList.submit();
}
}
function update_favorite_doc_hpage() {
var count=get_selected_doc_list(“update”);
if (count > 10) {
alert(‘The maximum number of favorite documents for display on the home page is ten.’);
} else {
document.docList.calling_url.value = this.document.location.href;
document.docList.action = “/iplw/core_adp/update_favorite_doc_hpage.adp”;
document.docList.submit();
}
}
function rename_favorite_doc(docid) {
top.smallPopUp(‘/iplw/core_adp/get_new_favorite_doc_name.adp?docid=’ + docid+ ‘&calling_url=’+this.document.location.href, 350, 195);
}
function renameDoc() {
if( document.getDocName.name.value == “” ) {
alert(“You must enter a name in order to save a favorite document.”);
return false;
} else {
var aName = trimwhitespaces(document.getDocName.name.value);
if ( aName.length == 0 ) {
alert(“You must enter at least one alphanumeric char for the new document name.”);
return false;
} else {
document.getDocName.doc_name.value = aName;
document.getDocName.action = ‘/[bwd::get_product]/core_adp/rename_favorite_doc_name.adp’;
document.getDocName.action = ‘/iplw/core_adp/rename_favorite_doc_name.adp’;
return true;
}
}
}
function closeWindow() {
window.close();
}
function forbid(obj) {
alert(“This document is no longer valid. Please pick another document to be displayed on the home page.”);
obj.checked = false;
}
function forbid_exceed(obj) {
alert(‘You have reached the maximum number (10) of favorite documents for display on the home page.’);
obj.checked = false;
}
// ]]>// <![CDATA[
// <![CDATA[
function makeRequest(url, obj) {
// Number of documents selected
var batchprint_count = 0;
if (window.frames[‘bpPlaceHolder’].batchprint_count) {
// alert (window.frames[‘bpPlaceHolder’].batchprint_count);
batchprint_count = window.frames[‘bpPlaceHolder’].batchprint_count;
// Initial page load
} else if (document.batchprint.batchprint_count){
batchprint_count = document.batchprint.batchprint_count.value;
}
if (document.batchprint) {
if (obj.checked) {
// limit is 25 documents
if (batchprint_count >= 25) {
alert (“You have reached the maximum number of documents (25) for batch printing. Click on the print icon to print your selections.”);
window.location.reload(true);
} else {
url = url + ‘&action=add’
frames[‘bpPlaceHolder’].location.href = url;
}
} else {
url = url + ‘&action=delete’;
frames[‘bpPlaceHolder’].location.href = url;
}
}
}
// ]]>// <![CDATA[
// <![CDATA[
function openPrintView() {
URL = “/iplw/display/batch_print_dialog.adp?fedfid=3635215&vname=ippqcases2&wsn=520004000&searchid=10686607&doctypeid=1&type=court&mode=doc&split=0&scm=5000&pg=0”;
top.smallPopUp(URL,650,500,’batchprint’);
}
function openHierPrintView(hprint) {
URL = “/iplw/display/batch_print_dialog.adp?fedfid=3635215&vname=ippqcases2&wsn=520004000&searchid=10686607&doctypeid=1&type=court&mode=doc&split=0&scm=5000&pg=0” + “&hprint=” + hprint;
top.smallPopUp(URL,650,500,’batchprint’);
}
// ]]>
It is difficult to identify many circumstances in which an “effectively out of court” situation would be presented for substantive issues based on concurrent reexamination.
Continue Reading Appelate Review of Stays Pending Patent Reexamination?
ass=”size-full wp-image-2005 alignleft” title=”smoking-gun” src=”https://www.patentspostgrant.com/wp-content/uploads/2010/04/smoking-gun.jpg” alt=”smoking-gun” width=”135″ height=”143″ /> The legislative history of 35 U.S.C. § 312 suggests that a purpose of the substantial new question of patentability (“SNQ”) prerequisite is to prevent patent owner harassment via seriatim requests for reexamination.


ass=”alignleft size-full wp-image-1688″ title=”top5″ src=”https://www.patentspostgrant.com/wp-content/uploads/2010/03/top5.jpg” alt=”top5″ width=”116″ height=”114″ />Although the link to the left side provides a top 5 postings of sorts, the ranking is skewed significantly by spam bot visits (seeking to leave advertising comments on the same few posts over and over). Until we can figure out a way to correct the calculation,
ass=”alignleft size-full wp-image-1653″ title=”reset” src=”https://www.patentspostgrant.com/wp-content/uploads/2010/03/reset.jpg” alt=”reset” width=”169″ height=”175″ />
g class=”alignleft size-full wp-image-1643″ title=”truth_and_lies_t” src=”https://www.patentspostgrant.com/wp-content/uploads/2010/03/truth_and_lies_t.gif” alt=”truth_and_lies_t” width=”314″ height=”115″ />–Guest Posting–
ass=”alignleft size-full wp-image-1626″ title=”amazon_crave” src=”https://www.patentspostgrant.com/wp-content/uploads/2010/03/amazon_crave.jpg” alt=”amazon_crave” width=”181″ height=”119″ />Various stories began appearing yesterday noting the recent termination of the ex parte reexamination Amazon’s famous “1 – click patent” (USP 5,960,411). This patent was the subject of a patent dispute between Amazon.com and Barnes & Noble.com. As most recall, B&N was subject to a preliminary injunction during the 1999 holiday season. The suit was settled in 2002, terms of the settlement remain confidential. Amazon appears to have been fairly successful in licensing the patent thereafter.
ass=”alignleft size-full wp-image-1450″ title=”6a00d8341c51c053ef00e5508783d08834-800wi” src=”https://www.patentspostgrant.com/wp-content/uploads/2010/02/6a00d8341c51c053ef00e5508783d08834-800wi.jpg” alt=”6a00d8341c51c053ef00e5508783d08834-800wi” width=”222″ height=”165″ />