// JavaScript Document For the Main index.htm page.



// Defines the GoWhere(); function for the Appointmnet Button.
function GoWhere()
{
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
	{
		location.replace("/iPhone/");
	}
	else 
	{
	/*	 Shadowbox.open({
        player:     'iframe',
        content:    'Pages/Appointment/frame.htm',
        height:     526,
        width:      782,
		options: {animate: false}
    });*/
	window.open('Pages/Appointment/') 
	}
}