/*
Kopiëren van deze javascript-code is alleen toegestaan met uitdrukkelijke 
toestemming van de programmeur of STIWOT.
Voor meer informatie: webmaster@stiwot.nl

Copying this javascript-code is only permitted with explicit
permission of the programmer or STIWOT
for more information: webmaster@stiwot.nl
*/
function resizeimagewindow() 
	{  
	var x1=window.screen.availWidth-50 
	var y1=window.screen.availHeight-50
	var x2=document.images[0].width+25
	var y2=document.images[0].height+100
	
	window.resizeTo(x2, y2)
	document.body.style.overflowX = 'hidden'
	document.body.style.overflowY = 'hidden'
	
	/*alert(document.getElementById("picture").offsetHeight);*/
	
	window.resizeTo(x2, document.getElementById("picture").offsetHeight+60)
  
  }
function popupimage(id)
  {
  var w = 500;
  var h = 500;    
  var topPos = 10;
  var leftPos = 10;
  window.open('picture.asp?id='+id,'twimagepopup','width=' + w + ',height=' + h + ',top=' + topPos + ',left=' + leftPos + ',scrollbars=no');  
  }       