window.onload = jsFnOnload;

function jsFnOnload()
{
	if (document.getElementById)
	{		  
		/* Associate logo's onclick event with home page */
		var logo = document.getElementById("logo");
 		if (logo != null) {
			logo.onclick = function() {
				window.location = 'index.php';
				return false;
			}
		}
				
		var aContent = document.getElementById("content");
 		if (aContent != null) 
		{
			var links = aContent.getElementsByTagName("a");
			for(aLinkIndex = 0; aLinkIndex < links.length; aLinkIndex++)
			{
				if(links[aLinkIndex].href.indexOf('productimages/large/') != -1) links[aLinkIndex].onclick = JSFnImageZoom;
			}
		}
	}	
}

function JSFnImageZoom()
{
	var aWindow = window.open(this.href, 'productbig', 'menubar=no, resizable=1, toolbar=no, scrollbars=yes, width=600px, height=800px')
	aWindow.focus();
	return false;
}