 function extras()
 {
	var oPop= document.getElementById("aZoom");
	oPop.onclick = popHuge;
	oPop.onkeypress = popHuge;
}

function popHuge()
{
	var aPage = document.location.href.split('/');
	var sPage = "huge/" + aPage[aPage.length-1];
	var wnd = window.open(sPage,null,'height=700,width=400,left=0,top=0,location=no,menubar=no,status=no,toolbar=no,resizeable=yes,scrollbars=yes,titlebar=no');
	return false;
}

