				function openTribute(i)
				{	
					var iWidth = 875;
					var iHeight = 662;
					var iTop = -1;
					var iLeft = -1;				

					var version = parseFloat(navigator.appVersion.split('MSIE')[1])


					if(screen.availWidth <= 800)
					{
						iWidth = 752;
						iHeight = 540;

						if (version)
						{
							iHeight = iHeight - 40
                                       		}
	
						iTop = 0;
						alert('Your monitor resolution of '+screen.width+'x'+screen.height+' is less than than the reccommended size of 1024x768.\n\n  Please consider changing to a higher monitor resolution for best appearance.');
					}
					else if(screen.availHeight <= 768)
					{
										if (version)
						{	
							iHeight = iHeight - 20					
						}
					}

					if (version) iWidth += 18;
	
					iLeft = (iLeft==-1)?(parseInt((screen.availWidth/2)-(iWidth/2))):0;
					iTop = (iTop==-1)?(parseInt((screen.availHeight/2)-(iHeight/2))):0; 	
									
				
					open('http://hfh.frontrunnerpro.com/runtime/2826/runtime.php?SiteId=2826&NavigatorId=51095&op=tributeMemorialCandles&viewOpt=dpaneOnly&ItemId='+i, 'Tribute', 'alwaysRaised=1,dependent=1,scrollbars=1,directories=0,width='+iWidth+',height='+iHeight+',hotkeys=0,menubar=0,resizable=0,location=0,status=0,titlebar=1,toolbar=0,left='+iLeft+',top='+iTop).focus();
				
				}
