//var VTUrl = "http://www.virtualtour.be/webgallery/centrale/"
var VTUrl = "http://www.centrale.be/tours/";
photoWindow = null;
appletWindow = null;

function appletOpenWindow(tmpJP2){
  winWidth = 520;
  winHeight = 340;
  if (appletWindow != null) {
    appletWindow.close();
    appletWindow = null;
  }
  appletWindow = window.open(VTUrl + "detect.asp?jp2=" + tmpJP2,"appletWindow","toolbar=no,width=" + winWidth + ",height=" + winHeight + ",menubar=no,resizable=no,scrollbars=no");
  appletWindow.window.focus();
}

function photoOpenWindow(photoName, photoWidth, photoHeight){
  extraHeight = 55;
  winWidth = photoWidth;
  winHeight = photoHeight + extraHeight;
  if (photoWindow == null) {
    photoWindow = window.open('','photoWindow','toolbar=no,location=no,directories=no,status,scrollbars=no,Width=' + winWidth + ',Height=' + winHeight + ',left=5,top=5,resizable=yes')
  }else{
    if (!photoWindow.closed) {
      photoWindow.window.resizeTo (winWidth,winHeight+extraHeight)
    }else{
      photoWindow = window.open('','photoWindow','toolbar=no,location=no,directories=no,status,scrollbars=no,Width=' + winWidth + ',Height=' + winHeight + ',left=5,top=5,resizable=yes');
    }
  }
  photoWindow.document.writeln ('<HTML><HEAD>');
  photoWindow.document.writeln ('<title>CENTRALE - ANTWERP</title>');
  photoWindow.document.writeln ('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
  photoWindow.document.writeln ('</HEAD>');
  photoWindow.document.writeln ('<BODY TEXT="#808080" bgcolor="#3E4F81" LINK="#808080" VLINK="#808080" ALINK="#555555" background="F_images/loading.gif" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0"  SCROLL=NO onload="self.moveTo(5,5);self.resizeTo('+winWidth+','+(winHeight+55)+');window.focus();" onUnload="window.focus()">');
  photoWindow.document.writeln ('<CENTER><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR ><TD ALIGN=center colspan=3>');
  photoWindow.document.writeln ('<FORM>');	 
  photoWindow.document.writeln ('<IMG SRC="' + VTUrl + photoName + '" WIDTH='+ photoWidth +' HEIGHT='+ photoHeight +' BORDER=0>');
  photoWindow.document.writeln ('</TD></TR>');				 
  photoWindow.document.writeln ('</TABLE>');
  photoWindow.document.writeln ('<INPUT TYPE="button" NAME="Submit" VALUE="Close Window" onClick="window.close()">');
  photoWindow.document.writeln ('</FORM>');	 
  photoWindow.document.writeln ('</CENTER></BODY></HTML>');
  photoWindow.document.close ();
  photoWindow.window.focus();
}
