function showAjaxForm() {
	Lightview.show({
		href: 'common/request_info.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxForm);
				}
			}
		}
	});
}

function showAjaxFormVirtual() {
	Lightview.show({
		href: 'common/request_info_virtualconsultant.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormVirtual);
				}
			}
		}
	});
}

function showAjaxFormRapid() {
	Lightview.show({
		href: 'common/request_info_rapidresponse.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormRapid);
				}
			}
		}
	});
}

function showAjaxFormChat() {
	Lightview.show({
		href: 'common/request_info_livechat.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormChat);
				}
			}
		}
	});
}

function showAjaxFormMobile() {
	Lightview.show({
		href: 'common/request_info_mobile.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormMobile);
				}
			}
		}
	});
}

function showAjaxFormVirtualTours() {
	Lightview.show({
		href: 'common/request_info_virtualtours.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormVirtualTours);
				}
			}
		}
	});
}

function showAjaxFormSEM() {
	Lightview.show({
		href: 'common/request_info_sem.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormSEM);
				}
			}
		}
	});
}

function showAjaxFormSEO() {
	Lightview.show({
		href: 'common/request_info_seo.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormSEO);
				}
			}
		}
	});
}

function showAjaxFormCustomWebsites() {
	Lightview.show({
		href: 'common/request_info_custom_websites.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormCustomWebsites);
				}
			}
		}
	});
}

function showAjaxFormFB() {
	Lightview.show({
		href: 'common/request_info_fb.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormFB);
				}
			}
		}
	});
}

function showAjaxFormVideo() {
	Lightview.show({
		href: 'common/request_info_video.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormVideo);
				}
			}
		}
	});
}

function showAjaxFormEbayCraigslist() {
	Lightview.show({
		href: 'common/request_info_ebay_craigslist.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormEbayCraigslist);
				}
			}
		}
	});
}

function showAjaxFormInventory() {
	Lightview.show({
		href: 'common/request_info_inventory.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormInventory);
				}
			}
		}
	});
}

function showAjaxFormLiveRepairs() {
	Lightview.show({
		href: 'common/request_info_live_repairs.php',
		rel: 'ajax',
		options: {
			autosize: false,
			topclose: true,
			ajax: {
				onComplete: function(){
				// once the request is complete we observe the form for a submit
				$('modalform').observe('submit', submitAjaxFormLiveRepairs);
				}
			}
		}
	});
}

function submitAjaxForm(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormVirtual(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_virtualconsultant.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormRapid(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_rapidresponse.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormChat(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_livechat.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormAward(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/award_popup.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormMobile(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_mobile.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormVirtualTours(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_virtualtours.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormSEM(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_sem.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormSEO(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_seo.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormCustomWebsites(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_custom_websites.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormFB(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_fb.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormVideo(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_video.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormEbayCraigslist(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_ebay_craigslist.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormInventory(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_inventory.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}

function submitAjaxFormLiveRepairs(event) {
  // block default form submit
  Event.stop(event);
	  
  Lightview.show({
    href: 'common/request_info_live_repairs.php',
    rel: 'ajax',
    options: {
	  menubar: false,
	  topclose: true,
	  autosize: true,
      ajax: {
        parameters: Form.serialize('modalform') // the parameters from the form
      }
    }
  });
}
