	// Function to open appointment system
	
	function appointment_nofee()
	{
		var winWidth = 650
		var winHeight = 540
		var leftpos =(screen.width-winWidth)/2
		var toppos =(screen.height-winHeight)/2
		var screenattributes="width="+winWidth+",height="+winHeight+",resizable=yes,scrollbars=yes,menbar=no,toolbar=no,status=no,left="+leftpos+", top="+toppos;
		window.open("http://www.appointmentquest.com/provider/2040114130","",screenattributes)
	}
	
	function appointment()
	{
		var winWidth = 950
		var winHeight = 540
		var leftpos =(screen.width-winWidth)/2
		var toppos =(screen.height-winHeight)/2
		var screenattributes="width="+winWidth+",height="+winHeight+",resizable=yes,scrollbars=yes,menbar=no,toolbar=no,status=no,left="+leftpos+", top="+toppos;
		window.open("appointment.html","",screenattributes)
	}
