
// DEFINE VARIABLES FOR WINDOW POPS
// referal or tell friend window
var jbpres = null;

// email photo window
var emailPhoto = null;


// launch referal or tell friend window
function launchTellFriendWindow() {

     jbpres = window.open("/cgi-bin/tell_a_friend.cgi?function=display","window","hotkeys=no,toolbar=no,location=no,directories=no,status=no,width=465,height=565,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left=5,top=0");

     jbpres.focus();   return false;

    }

// email photo window (dynamic sizing)
function launchemailPhoto(src, x, y) {

// expand window to accommodate logo and form
     x = x + 370;
     y = y + 100;
     emailPhoto = window.open(src, "productEnlarge","hotkeys=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,left=0,top=0,width="+x+",height="+y);
     emailPhoto.focus();   return false;
    }


// close spawned windows
function closeWindows()
 {
   if (jbpres != null)
    {
	   jbpres.close();
    }
    
   if (emailPhoto != null)
        {
          emailPhoto.close();
    	}
 }
