function showPlan(n){
	var u,t;
	switch(n){
		case 0:u='plan-businesscard.html';t='Business Card Plan Details';break;
		case 1:u='plan-standard.html';t='Standard Plan Details';break;
		case 2:u='plan-pro.html';t='Pro Plan Details';break;
		case 3:u='plan-dedicated.html';t='Virtual/Dedicated Plan Details';break;
	}
	ajax.get(u,function(e){CreatePopupWindow(t,e,400);});
	
}

function comparePlans(){
	ajax.get('plan-comparison.html',function(e){CreatePopupWindow('Hosting Comparison Table',e,560);});
}

function beginOrdering(){
	CreatePopupWindow('Online Ordering', '<div style="padding: 40px 0; text-align: center;">Online ordering is currently not available.<br><br><br><br><input type="button" onClick="DestroyPopupWindow(\'window\')" value="Close"></div>', 400);
}