
/***************************************************************************
 *                               resize.js
 *                            -------------------
 *   Begin                : Donderdag, 21 Oktober, 2004
 *   Copyright            : Martin van Dijk
 *   Omschrijving:        : JavaScript functies voor het resizen van te grote afbeeldingen
 *
 ***************************************************************************/

var maxWidth = 570;

function image_unresize(){
	this.width = this.width == maxWidth? this.orgwidth:maxWidth;
}

function image_resize(im){
	if(im.width > maxWidth){
		im.orgwidth = im.width;
		im.width = maxWidth;
		im.onclick = image_unresize;
	}
}
