/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function largeImage(nr, src)
{

	if (document.layers)
	{
		document.layers[nr].src = src;
	}
	else if (document.all)
	{
		document.all[nr].src = src;
	}
	else if (document.getElementById)
	{
		document.getElementById(nr).src = src;
	}
}
