window.name = "dtmain";

function openWin(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function openFullScreen(theURL,winName) {
  window.open(theURL,winName,"top=0, left=0, width="+screen.width+", height="+screen.height+", fullscreen=yes, scrollbars=no");
}


function openGallery(theURL) {
  openWin(theURL,"dgallery","width=720,height=540,scrollbars=no");
}

function openGalleryEx(theURL) {
  openWin(theURL,"dgallery","width=760,height=640,scrollbars=no");
}

function openGalleryFullScreen(theURL) {
  openFullScreen(theURL,"dgallery");
}

function openGallery2(theURL) {
  openWin(theURL,"dgallery","width=900,height=640,scrollbars=no");
}


