//var maxwidth=298;
var maxwidth=300;
var local_domain=document.location.hostname;

function resize_images() {
	for(var i=0;i<document.images.length;i++) {
		var img=document.images[i];
		if(img.width>maxwidth && !img.src.match(local_domain) && !img.src.match('travelactive.nl')) {
			var currwidth=img.width;
			var currheight=img.height;
			var newwidth=maxwidth;
			var newheight=currheight*(newwidth/currwidth);
			img.width=newwidth;
			img.height=newheight;
			/*
			img.style.border = "dashed 1px black";
			img.style.cursor = "hand";
			img.onclick=open_image;
			*/
		}
	}
}

function open_image() {
	open(window.event.srcElement.src,'_blank');
}
