// JavaScript Document
// functions for Chris family photo
// script to open new window for photos
// Open_window is 770 x 600 

var statusCheck = null;
function open_window(url) {
   if (statusCheck == null) {
      mywin2 = open(url,"mywin2",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,	 width=770,height=600,left=100,top=100,screeny=20,screenx=130');
      statusCheck = 1;
   }
   else {
         mywin2.close();
         mywin2 = open(url,"mywin2",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=770,height=600,left=100,top=100,screeny=20,screenx=130');
         statusCheck = 1;
   }
}
// -->
// Begin window -->
// Open_window2 was 520 x 730 now 600 x 800
//
var statusCheck = null;
function open_window2(url) {
   if (statusCheck == null) {
      mywin2 = open(url,"mywin2",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,	 width=600,height=800,left=100,top=100,screeny=20,screenx=130');
      statusCheck = 1;
   }
   else {
         mywin2.close();
         mywin2 = open(url,"mywin2",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=520,height=730,left=100,top=100,screeny=20,screenx=130');
         statusCheck = 1;
   }
}
// Open_window3 900 x 650
//
var statusCheck = null;
function open_window3(url) {
   if (statusCheck == null) {
      mywin2 = open(url,"mywin2",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,	 width=650,height=900,left=100,top=10,screeny=20,screenx=130');
      statusCheck = 1;
   }
   else {
         mywin2.close();
         mywin2 = open(url,"mywin2",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=650,height=900,left=100,top=10,screeny=20,screenx=130');
         statusCheck = 1;
   }
}

