function camwinny(toneloc)
{
camera=window.open(toneloc,"camwindow","toolbar=no,scrollbars=no,resizable=no,menubar=no,status=no,directories=no,location=no,width=320,height=240")
}
function viewer(toneloc)
{
camera=window.open(toneloc,"viewer","toolbar=no,scrollbars=no,resizable=no,menubar=no,status=no,directories=no,location=no,width=600,height=575")
}
var remoteWin = null;
var showWin = null;
function showPic(pic,wi,hi) {
  if (showWin != null) 
  {
        if (!showWin.closed) {
                showWin.close();
        }
        showWin = window.open('http://www.fijen.net/pop.html?img='+pic,"",'toolbar=0,location=0,top=0,left=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+wi+',height='+hi+',dependent=yes');       
  }
  if (showWin == null) {
          showWin = window.open('http://www.fijen.net/pop.html?img='+pic,"",'toolbar=0,location=0,top=0,left=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+wi+',height='+hi+',dependent=yes');
  }
}
window.focus();

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

function openPictureWindow_Fever(imageName,imageWidth,imageHeight,windowHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+windowHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title> '+alt+'</title><body bgcolor="#FFFFFF" TEXT="#000000" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt="© guido -  '+alt+'">'); 

	newWindow.document.write('<BR><FONT FACE="Arial, Helvetica, sans-serif" SIZE=2>&nbsp; '+alt+'</FONT>'); 

	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}