function moreinfo(infopage){
	
	
	var hswidth = '600';
	var hsheight = '600';
	
	var moreinfotag = document.getElementById("supportingpageslink");
		
	switch (infopage){

		case 'demo': 
			hswidth = '800';
			hsheight = '600';
			var moreinfopage = 'additionalinfo/additionalinfosample.html';
			var moreinfotitle = 'More Info for Demo';
		break;
	
		case 'upgrade': 
			hswidth = '600';
			hsheight = '300';
			var moreinfopage = 'additionalinfo/additionalinfosample.html';
			var moreinfotitle = 'More Info on c';
		break;
		
		case 'whyupgrade': 
			hswidth = '600';
			hsheight = '300';
			var moreinfopage = 'additionalinfo/whyupgrade.html';
			var moreinfotitle = 'More Info on Why to Upgrade Storefront';
		break;
		
		case 'seo':
			var moreinfopage = 'additionalinfo/seo.html';
			var moreinfotitle = 'More Info on SEO';
		break;
		
		case 'traffic':
			var moreinfopage = 'additionalinfo/traffic.html';
			var moreinfotitle = 'More Info on Site Traffic';
		break;
		
		case 'events': 
			var moreinfopage = 'additionalinfo/events.html';
			var moreinfotitle = 'More Info on the Events Calendar';
		break;
		
		case 'birthday': 
			var moreinfopage = 'additionalinfo/birthday.html';
			var moreinfotitle = 'More Info on the Birthday Club';
		break;
		
		case 'coupon': 
			var moreinfopage = 'additionalinfo/coupons.html';
			var moreinfotitle = 'More Info on the Online Coupon';
		break;
		
		case 'blast': 
			var moreinfopage = 'additionalinfo/blast.html';
			var moreinfotitle = 'More Info on the Email Blast';
		break;
		
		case 'community': 
			var moreinfopage = 'additionalinfo/community.html';
			var moreinfotitle = 'More Info on Community Connection';
		break;
		
		case 'customurl': 
			var moreinfopage = 'additionalinfo/url.html';
			var moreinfotitle = 'More Info on the Custom URLs';
		break;
		
		case 'haveurl': 
			var moreinfopage = 'additionalinfo/additionalinfosample.html';
			var moreinfotitle = 'More Info on Redirecting your URL';
		break;
		
		case 'eventnote':
		    hswidth = '675';
			hsheight = '400';
			var moreinfopage = 'additionalinfo/eventsnote.html';
			var moreinfotitle = 'More Info on the Events Calendar';
		break;
		
		case 'bdaynote':
		    hswidth = '675';
			hsheight = '400';
			var moreinfopage = 'additionalinfo/bdaynote.html';
			var moreinfotitle = 'More Info on the Birthday Club';
		break;
		
		case 'couponnote':
		    hswidth = '675';
			hsheight = '400';
			var moreinfopage = 'additionalinfo/couponsnote.html';
			var moreinfotitle = 'More Info on the Online Coupon';
		break;
		
		case 'blastnote':
		    hswidth = '600';
			hsheight = '300';
			var moreinfopage = 'additionalinfo/blastnote.html';
			var moreinfotitle = 'More Info on the Email Blast';
		break;
		
	}
	
	if(moreinfopage){
		moreinfotag.href = moreinfopage;
		moreinfotag.onclick = function() {hs.htmlExpand(moreinfotag, { objectType: 'iframe', contentId:'supportingpage', preserveContent: false, align: 'center', width: hswidth, height: hsheight, dimmingOpacity: 0.75 } )};
		moreinfotag.onclick();
		
		try{
			document.getElementById('supportingpagetitle').innerHTML = moreinfotitle;
		}catch(err){
			//Do not set the highslide title.
		}
	}
	
}

function closesupportingpage(){
	var imagetag=document.getElementById('supportingpageslink');
	hs.close(imagetag);
}