var images;

function loadImages(name,postfix,start,end) {
	var ii = "";
	for (i=start;i<=end;i++)
	{
		ii = (i<10) ? "0"+i : ""+i ;
		eval(name+ii+postfix+" = new Image();");
		//next line alerts preloaded images
		//eval(name+ii+postfix+".onload = alert('plaatje');");
		eval(name+ii+postfix+".src = \"img/"+name+ii+postfix+".gif\";");
	}
}

function swapBtn(img,pf) {
	window.status='Done';
	eval('document.'+img+'.src = "img/'+img+pf+'.gif";');
}

function loadPage(src,frm) {
	eval('window.frames.'+frm+'.document.location="'+src+'";');
}



