// JavaScript Document

<!--
			function MM_findObj(n, d) { //v4.01
				var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
					d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
				if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
				for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
				if(!x && d.getElementById) x=d.getElementById(n); return x;
			}

			//Drop Down Menu
			function MM_jumpMenu(targ,selObj,restore){ //v3.0
				eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
				if (restore) selObj.selectedIndex=0;
			}

			//Form Validator for free LASIK seminar
			function checkForm(OB){
			var FormCompleate = true;
			var error = "The following items must be filled out or corrected.\n";
			var value = "";
			var radio_count = false;
			for(var i = 0; i < OB.elements.length; i++){
				switch(OB.elements[i].name){
					case "SeminarDate": //Select Check (SeminarDate)
						if(OB.elements[i].value == ""){
							error += "  -You must select a Seminar Date.\n";
							FormCompleate = false;
						}						
					break;
					case "request": //Select Check
						if(OB.elements[i].value == ""){
							error += "  -You must select the desired information.\n";
							FormCompleate = false;
						}						
					break;
					case "first_name": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a First Name.\n";
							FormCompleate = false;
						}
					break;
					case "last_name": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Last Name.\n";
							FormCompleate = false;
						}
						break;
					case "address": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Address.\n";
							FormCompleate = false;
						}						
					break;
					case "city": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a City.\n";
							FormCompleate = false;
						}
					break;
					case "state": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a State.\n";
							FormCompleate = false;
						}
					break;
					case "zip": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Zip.\n";
							FormCompleate = false;
						}
					break;
					case "work_phone": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Work Phone.\n";
							FormCompleate = false;
						}
					break;
					case "home_phone": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Home Phone.\n";
							FormCompleate = false;
						}
					break;
					case "email": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Email Address.\n";
							FormCompleate = false;
						}
					break;
					case "reference": //Check Radio button
						if(OB.elements[i].checked && radio_count == false){
							radio_count = true;
						}
					break;
				}

			}
			
			if(radio_count == false){
						error += "  -Please tell us where you heard about us.\n";
						FormCompleate = false;					
			}
		
			if(FormCompleate){
				return FormCompleate;
			} else {
				window.alert(error);
				return FormCompleate;
			}
		}
		
		
		//Form Validator for book an evaluation
			function checkForm2(OB){
			var FormCompleate = true;
			var error = "The following items must be filled out or corrected.\n";
			var value = "";
			var radio_count = false;
			for(var i = 0; i < OB.elements.length; i++)
			{
				switch(OB.elements[i].name){
					case "first_name": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a First Name.\n";
							FormCompleate = false;
						}
					break;
					case "last_name": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Last Name.\n";
							FormCompleate = false;
						}
					break;
					case "email": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Email Address.\n";
							FormCompleate = false;
						}
					break;
					case "home_phone": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Home Phone.\n";
							FormCompleate = false;
						}
					break;
					case "work_phone": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Work Phone.\n";
							FormCompleate = false;
						}
					break;
					case "address": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Address.\n";
							FormCompleate = false;
						}						
					break;
					case "city": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a City.\n";
							FormCompleate = false;
						}
					break;
					case "state": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a State.\n";
							FormCompleate = false;
						}
					break;
					case "zip": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Zip.\n";
							FormCompleate = false;
						}
					break;
					case "date_of_birth": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a Date of Birth.\n";
							FormCompleate = false;
						}
					break;
					case "appointment_time": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter an appointment time.\n";
							FormCompleate = false;
						}
					break;
					case "questions": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a question or comment.\n";
							FormCompleate = false;
						}
					break;
					
					case "glasses_contacts": //Check Radio button
						if(OB.elements[i].checked && radio_count == false){
							radio_count = true;
						}
					break;
				}

			}
			
			if(radio_count == false){
						error += "  -Please tell us if you wear glasses or contacts.\n";
						FormCompleate = false;					
			}
		
			if(FormCompleate){
				return FormCompleate;
			} else {
				window.alert(error);
				return FormCompleate;
			}
		}
		
			//Form Validator for contact form
			function checkForm3(OB){
			var FormCompleate = true;
			var error = "The following items must be filled out or corrected.\n";
			var value = "";
			var radio_count = false;
			for(var i = 0; i < OB.elements.length; i++){
				switch(OB.elements[i].name){
					case "first_name": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a first name.\n";
							FormCompleate = false;
						}
					break;
					case "last_name": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a last name.\n";
							FormCompleate = false;
						}
						break;
					case "email": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a email address.\n";
							FormCompleate = false;
						}
					break;
					case "phone": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a phone number.\n";
							FormCompleate = false;
						}
					break;
					case "address": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a address.\n";
							FormCompleate = false;
						}						
					break;
					case "city": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a city.\n";
							FormCompleate = false;
						}
					break;
					case "state": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a state.\n";
							FormCompleate = false;
						}
					break;
					case "zip": //Text Field Check
						if(OB.elements[i].value == ""){
							error += "  -You must enter a zip.\n";
							FormCompleate = false;
						}
					break;
					case "reference": //Check Radio button
						if(OB.elements[i].checked && radio_count == false){
							radio_count = true;
						}
					break;
				}

			}
			
			if(radio_count == false){
						error += "  -Please tell us where you heard about us.\n";
						FormCompleate = false;					
			}
		
			if(FormCompleate){
				return FormCompleate;
			} else {
				window.alert(error);
				return FormCompleate;
			}
		}
		
//Clear Text Field
function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
}

function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}

//Dreamweaver form validator
function MM_validateForm() { //v4.0
  var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="") {
      if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
        if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
      } else if (test!='R') { num = parseFloat(val);
        if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
        if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
          min=test.substring(8,p); max=test.substring(p+1);
          if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
  } if (errors) alert('The following error(s) occurred:\n'+errors);
  document.MM_returnValue = (errors == '');
}
//-->


// lasik.html
function movie01Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/09.mov" /><embed src="http://video.page1solutions.com/GriffinReed/09.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
function  movie02Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/10.mov" /><embed src="http://video.page1solutions.com/GriffinReed/10.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}

// cataract.html
function movie03Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/05.mov" /><embed src="http://video.page1solutions.com/GriffinReed/05.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// lasik_custom.html
function movie04Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/25.mov" /><embed src="http://video.page1solutions.com/GriffinReed/25.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// lasik_dissect_ad.html
function movie05Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/24.mov" /><embed src="http://video.page1solutions.com/GriffinReed/24.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// lasik_procedure.html
function movie06Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/09.mov" /><embed src="http://video.page1solutions.com/GriffinReed/09.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
function movie07Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/17.mov" /><embed src="http://video.page1solutions.com/GriffinReed/17.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
function movie08Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/18.mov" /><embed src="http://video.page1solutions.com/GriffinReed/18.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// lasik_shopping.html
function movie09Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/23a.mov" /><embed src="http://video.page1solutions.com/GriffinReed/23a.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
function movie10Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/23b.mov" /><embed src="http://video.page1solutions.com/GriffinReed/23b.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
function movie11Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/23c.mov" /><embed src="http://video.page1solutions.com/GriffinReed/23c.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// lasik_surgeon.html
function movie12Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/23.mov" /><embed src="http://video.page1solutions.com/GriffinReed/23.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// monovision.html
function movie13Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/20.mov" /><embed src="http://video.page1solutions.com/GriffinReed/20.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// optical.html
function movie14Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/08.mov" /><embed src="http://video.page1solutions.com/GriffinReed/08.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// read_prescription.html
function movie15Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/14.mov" /><embed src="http://video.page1solutions.com/GriffinReed/14.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// robert_griffin.html
function movie16Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/01.mov" /><embed src="http://video.page1solutions.com/GriffinReed/01.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// testimonials.html
function movie17Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/16.mov" /><embed src="http://video.page1solutions.com/GriffinReed/16.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video01.html
function movie18Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/01.mov" /><embed src="http://video.page1solutions.com/GriffinReed/01.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video02.html
function movie19Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/02.mov" /><embed src="http://video.page1solutions.com/GriffinReed/02.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video03.html
function movie20Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/03.mov" /><embed src="http://video.page1solutions.com/GriffinReed/03.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video04.html
function movie21Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/04.mov" /><embed src="http://video.page1solutions.com/GriffinReed/04.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video05.html
function movie22Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/05.mov" /><embed src="http://video.page1solutions.com/GriffinReed/05.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video06.html
function movie23Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/06.avi" /><embed src="http://video.page1solutions.com/GriffinReed/06.avi" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video07.html
function movie24Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/07.mov" /><embed src="http://video.page1solutions.com/GriffinReed/07.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video08.html
function movie25Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/08.mov" /><embed src="http://video.page1solutions.com/GriffinReed/08.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video09.html
function movie26Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/09.mov" /><embed src="http://video.page1solutions.com/GriffinReed/09.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video10.html
function movie27Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/10.mov" /><embed src="http://video.page1solutions.com/GriffinReed/10.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video11.html
function movie28Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/11.mov" /><embed src="http://video.page1solutions.com/GriffinReed/11.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video12.html
function movie29Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/12.mov" /><embed src="http://video.page1solutions.com/GriffinReed/12.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video13.html
function movie30Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/13.mov" /><embed src="http://video.page1solutions.com/GriffinReed/13.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video14.html
function movie31Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/14.mov" /><embed src="http://video.page1solutions.com/GriffinReed/14.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video15.html
function movie32Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/15.mov" /><embed src="http://video.page1solutions.com/GriffinReed/15.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video16.html
function movie33Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/16.mov" /><embed src="http://video.page1solutions.com/GriffinReed/16.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video17.html
function movie34Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/17.mov" /><embed src="http://video.page1solutions.com/GriffinReed/17.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video18.html
function movie35Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/18.mov" /><embed src="http://video.page1solutions.com/GriffinReed/18.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video19.html
function movie36Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/19.mov" /><embed src="http://video.page1solutions.com/GriffinReed/19.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video20.html
function movie37Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/20.mov" /><embed src="http://video.page1solutions.com/GriffinReed/20.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video21.html
function movie38Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/21.mov" /><embed src="http://video.page1solutions.com/GriffinReed/21.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video22.html
function movie39Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/22.mov" /><embed src="http://video.page1solutions.com/GriffinReed/22.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video23a.html
function movie40Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/23a.mov" /><embed src="http://video.page1solutions.com/GriffinReed/23a.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video23b.html
function movie41Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/23b.mov" /><embed src="http://video.page1solutions.com/GriffinReed/23b.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video23c.html
function movie42Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/23c.mov" /><embed src="http://video.page1solutions.com/GriffinReed/23c.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video24.html
function movie43Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/24.mov" /><embed src="http://video.page1solutions.com/GriffinReed/24.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video25.html
function movie44Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/25.mov" /><embed src="http://video.page1solutions.com/GriffinReed/25.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// video26.html
function movie45Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/26.mov" /><embed src="http://video.page1solutions.com/GriffinReed/26.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
// vision_problems.html
function movie46Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/07.mov" /><embed src="http://video.page1solutions.com/GriffinReed/07.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
function movie47Get() {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab"><param name="autoplay" value="false" /><param name="controller" value="true" /><param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" /><param name="target" value="myself" /><param name="type" value="video/quicktime" /><param name="src" value="http://video.page1solutions.com/GriffinReed/03.mov" /><embed src="http://video.page1solutions.com/GriffinReed/03.mov" width="320" height="256" autoplay="false" controller="true" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html" target="myself" type="video/quicktime"></embed></object>');
}
