
// DEFINE VARIABLES FOR WINDOW POPS
// Petition Preview Window

// var jppres to null = no spawned window
var jbpres = null;




// launch Petition Priview Window
function launchPreviewWindow() {

     jbpres = window.open("/how-you-can-help/canadian-petition/petition-preview.php","window","hotkeys=no,toolbar=no,location=no,directories=no,status=no,width=775,height=540,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left=5,top=0");

     jbpres.focus();   return false;

    }



// close spawned windows
function closeWindows()
 {
   if (jbpres != null)
    {
	   jbpres.close();
    }

 }

