Link to home
Start Free TrialLog in
Avatar of Pdesignz
PdesignzFlag for United States of America

asked on

OnChange help redirect to external webpage

I have a drop down list in a form and need when one of the options is selected to redirect to an external webpage, but when only of the options is selected. If any of the other options are selected, to keep and process the form as normal.

Inserting the drop-down do you can see the options to choose from. I am a newbie to jquery and any examples or code provided would be much appreciated. Thanks

<select id="field3" value="" name="BusinessRole">
            <option value="" selected="selected" id="field3" name="BusinessRole" >Select&hellip;</option>
            <option id="field3" value="Claims Executive (VP and above)" name="BusinessRole" >Claims Executive (VP and above)</option>
            <option id="field3" value="Claims Manager (Manager or Director)" name="BusinessRole" >Claims Manager (Manager or Director)</option>
            <option id="field3" value="Procurement" name="BusinessRole" >Procurement</option>
            <option id="field3" value="Info. Systems / Info. Technology" name="BusinessRole" >Info. Systems / Info. Technology</option>
            <option id="field3" value="Collision Claims Software User" name="BusinessRole" >Collision Claims Software User</option>
            <option id="field3" value="Other" name="BusinessRole" >Other</option>
            </select>

Open in new window

Avatar of xiontex
xiontex
Flag of United States of America image

I'm not 100% clear on your question but you can do the following:


<select id="mymenu" size="1">
<option value="nothing" selected="selected">Select a site</option>
<option value="1">Invest Frenzy</option>
<option value="2">Xiontex</option>
<option value="3">Google</option>
</select>

<script type="text/javascript">

var selectmenu=document.getElementById("mymenu")
selectmenu.onchange=function(){ //run some code when "onchange" event fires
 var chosenoption=this.options[this.selectedIndex] //this refers to "selectmenu"
 if (chosenoption.value == "1"){
  window.open("http://www.investfrenzy.com", "", "")
 }
}

</script>

Open in new window

Avatar of Pdesignz

ASKER

I used the code provided and tested in Chrome and nothing happens. Essentially I have a form and within this form, there is a drop-down with options to select from. There would be 6 options to choose from. I want it when they select the different options that it acts like a normal drop down and shows the options selected. When the user selects a specific option, say like option 3 or 4, this would then redirect them to an external page, but only when this specific option is selected all others would act like a normal drop down list.

Thanks
Did you copy and paste the code completely? I just tested on chrome selected option 1 redirects to www.investfrenzy.com. selecting option 2 or 3 does nothing.
I just re-tested in Chrome and Firefox and nothing happens when selecting any of the options. I am pasting the entire source code of the page, for you to view.

Thanks
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Auto Physical Damage Claims&mdash;Contact Us :: Mitchell</title>
<meta type="description" content="The Mitchell legacy, from foundation in 1946 by Glen Mitchell to ">
<meta content="IE=8" http-equiv="X-UA-Compatible">
<link media="all" href="../../../css/widget52.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="../../../css/style.css">
<script src="../../../js/jquery.js" type="text/javascript"></script>
<script src="../../../js/jquery.validate.js" type="text/javascript"></script>
<script src="../../../js/ga.js" async="" type="text/javascript"></script>
<script src="https://secure.eloqua.com/Include/livevalidation_standalone.compressed.js" type="text/javascript" ></script>
<script type="text/javascript">
$(function() {
	$('.left-menu .arrow').click(function() {
		if ($(this).closest('li').find('ul').length) {
			$(this).closest('li').toggleClass('open')
			$(this).closest('li').find('ul').slideToggle()
		}
	})
})
</script>
<!--<script src="../../includes/AC_RunActiveContent.htm" type="text/javascript"></script>-->
<!-- BEGIN GOOGLE ANALYTICS TRACKING -->
<script type="text/javascript">
  
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-3698060-1']);
  _gaq.push(['_trackPageview']);
  
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
  
  function recordOutboundLink(link, category, action) {
    _gat._getTrackerByName()._trackEvent(category, action);
    setTimeout('document.location = "' + link.href + '"', 100);
  }
  
</script>
<!-- END GOOGLE ANALYTICS TRACKING -->
<script type="text/javascript">
$(document).ready(function(){

	//Validation Script for US Phone Number
	jQuery.validator.addMethod("phoneUS", function(phone_number, element) {
		phone_number = phone_number.replace(/\s+/g, "");
		return this.optional(element) || phone_number.length > 9 &&
		phone_number.match(/^(1-?)?(\([2-9]\d{2}\)|[2-9]\d{2})-?[2-9]\d{2}-?\d{4}$/);
	}, "Please specify a valid phone number");
	
	//Validation Script for Zip/Postal Code
	jQuery.validator.addMethod("zip", function(zip, element) {
		return this.optional(element) || zip.match(/(^\d{5}(-\d{4})?$)|(^[ABCEGHJKLMNPRSTVXYabceghjklmnpstvxy]{1}\d{1}[A-Za-z]{1} ?\d{1}[A-Za-z]{1}\d{1})$/);
	}, "Please specify a valid postal/zip code");

	 //validation implementation will go here.
	$("#form80").validate({
		rules: {
			firstName: "required",
			lastName: "required",
			title: "required",
			BusinessRole: "required",
			company: "required",
			BusinessType: "required",
			AreaofInterest: "required",
			AnnualClaimsVolume: "required",
			ZipCode: {
				required: true,
				zip: true
			},
			emailAddress: {
				required: true,
				email: true
			},
			businessPhone: {
				required: true,
				phoneUS: true
			},
		},
		messages: {
			firstName: "<br />Please enter your first name",
			lastName: "<br />Please enter your last name",
			title: "<br />Please enter your title",
			BusinessRole: "<br />Please select your business role",
			company: "<br />Please enter your company name",
			BusinessType: "<br />Please select your business type",
			AreaofInterest: "<br />Please select your area of interest",
			AnnualClaimsVolume: "<br />Please select your annual claims volume",
			ZipCode: "<br />Please enter your zip code",
			emailAddress: "<br />Please enter your email address",
			businessPhone: "<br />Please enter your phone number",
		}

	})
})
</script>
<script type="text/javascript">

var selectmenu=document.getElementById("mymenu")
selectmenu.onchange=function(){ //run some code when "onchange" event fires
 var chosenoption=this.options[this.selectedIndex] //this refers to "selectmenu"
 if (chosenoption.value == "1"){
  window.open("http://www.investfrenzy.com", "", "")
 }
}

</script><style type="text/css">
.required { color: #900 !important; display: inline; float: none; font-weight: bold; }
input {width:250px; }
select {width:250px; }
#field13 { width:359px; }
label { /*display: block; line-height: 150%;*/ padding: 1px 0pt 3px;}
.LV_validation_message{ font-weight:bold; margin: 0 0 0 5px; }
.LV_valid{ color:#00CC00; display:none; }
.LV_invalid{ color:#900; font-size:10px; }
.LV_valid_field, input.LV_valid_field:hover, input.LV_valid_field:active, textarea.LV_valid_field:hover, textarea.LV_valid_field:active { border: 1px solid #00CC00; }
.LV_invalid_field, input.LV_invalid_field:hover, input.LV_invalid_field:active, textarea.LV_invalid_field:hover, textarea.LV_invalid_field:active { border: 1px solid #CC0000; }
#form80 label.error {
	font-weight: bold;
	font-size: 10px;
	color:#900;
	clear:both;
}
</style>

</head><body><div id="_atssh" style="visibility: hidden; height: 1px; width: 1px; position: absolute; z-index: 100000;"><iframe src="../../../includes/sh32.htm" style="height: 1px; width: 1px; position: absolute; z-index: 100000; border: 0pt none; left: 0pt; top: 0pt;" id="_atssh728"></iframe></div>
<div class="main">
	<div class="header">
   	  <a href="../../../index.asp" class="logo"><img src="../../../images/logo-mitchell-enterprise-management-software.png" alt="Mitchell - Claims Processing &amp; Auto Shop Management Software" width="212" height="55" /></a>
        <div class="box-utility">
  <ul class="utility">
                <li><a href="../../../company/index-about-mitchell-international.asp">Company</a></li>
                <li><a href="../../../careers/careers.asp">Careers</a></li>
                <li><a href="../../../media-center/index-media-center.asp">Media</a></li>
                <li><a href="../../../support/">Support</a></li>
                <li><a href="../../../contactus.asp">Contact</a></li>
                <li class="last"><a href="../../../careers/careers.asp">We're Hiring!</a></li>
          </ul>
        </div>
        <div class="clear"></div>
    </div>
    <div class="content">
      <ul class="menu">
        	<li><a href="../../../claims-management-software/index-claims-processing-workflow-solutions.asp"><span class="arr">Claims Management Solutions</span></a>
            	<ul>
                    <li>&nbsp;</li>
                    <li><a href="../../../claims-management-software/insurance-claims-processing/index-insurance-claims-software.asp">Collision Claims Management Software</a></li>
                    <li><a href="../../../claims-management-software/medical-claims-processing/index-medical-processing-software.asp">Medical Claims Processing Software</a></li>
                    <li><a href="../../../claims-management-software/workers-compensation-claims/index-management-software-smartadvisor.asp">Workers' Compensation Management Software</a></li>
                    <li class="last">Powered by Mitchell Technology</li>
                </ul>
            </li>
            <li><a href="../../../auto-repair-shop-software/index-auto-shop-management-software.asp"><span class="arr">Repair Shop Solutions</span></a>
            	<ul>	
		    <li>&nbsp;</li>
                    <li><a href="../../../auto-repair-shop-software/auto-shop-management-software.asp">Auto Shop Management Software</a></li>
                    <li><a href="../../../auto-repair-shop-software/estimating-and-imaging.asp">Estimating &amp; Imaging</a></li>
                    <li><a href="../../../auto-repair-shop-software/collision-repair-optimization.asp">Collision Repair Optimization</a></li>
                    <li><a href="../../../auto-repair-shop-software/customer-experience-management.asp">Customer Experience Management</a></li>
                    <li><a href="../../../auto-repair-shop-software/glass-invoicing-workflow-solutions.asp">Glass &amp; Invoicing Workflow</a></li>
                    <li><a href="../../../auto-repair-shop-software/mitchell-collision-guide-store.asp">The Mitchell Collision Guide Store</a></li>
                    <li class="last">Powered by Mitchell Technology</li>
                </ul>
            </li>
        </ul>
      <div class="r-line">
            <!-- BEGIN ADDTHIS BUTTON -->
            <div class="addthis_toolbox addthis_default_style ">
            <a href="http://www.addthis.com/bookmark.php?v=250&amp;username=mitchellintl" class="addthis_button_compact at300m"><span class="at300bs at15t_compact"></span>Share</a>
        <div class="atclear"></div></div>
            <script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script>
        <script type="text/javascript" src="../../../js/addthis_widget.js"></script>
            <!-- END ADDTHIS BUTTON -->
      </div>
	<!-- BEGIN HEADER IMAGE -->
        <div class="top-img">
       	  <img src="../../images/contact-information-header.jpg" alt="Company Information" width="960" height="76" />
        </div>
	<!-- END HEADER IMAGE -->
	<!-- BEGIN LEFT NAV -->
        <div class="left-side"></div>
        	<!-- BEGIN BODY COPY -->
          <div class="right-side">
        	<div class="breadcrumbs"><a href="../../../index.asp">Home</a> <span>\</span> <a href="../../../contactus.asp">Contact</a> <span>\</span> Auto Physical Damage Claims&mdash;Contact Us</div>
          <h1>Auto Physical Damage Claims&mdash;Contact Us</h1>
          <div class="left-col">
          <h2>How can we help you?</h2>

              <form method="post" name="APD-Claims-Contact" action="https://secure.eloqua.com/e/f2.aspx" id="form80" >

        <p>Please use the form below to request additional information.</p>
        <table width="100%" border="0" cellpadding="4" cellspacing="0" style="font-size:11px;" >
          <tr>
            <th colspan="2" align="left" valign="bottom">Contact Information</th>
          </tr>
          <tr>
            <td><label>First Name<span class="required">*</span></label></td>
            <td><input id="field0" value="" type="text" name="firstName" /></td>
          </tr>
          <tr>
            <td><label>Last Name<span class="required">*</span></label></td>
            <td><input id="field1" value="" type="text" name="lastName" /></td>
          </tr>
          <tr>
            <td><label>Title<span class="required">*</span></label></td>
            <td><input id="field2" value="" type="text" name="title" /></td>
          </tr>
          <tr>
            <td><label>Business Role<span class="required">*</span></label></td>
            <td><!--<select id="field3" value="" name="BusinessRole">
            <option value="" selected="selected" id="field3" name="BusinessRole" >Select&hellip;</option>
            <option id="field3" value="Claims Executive (VP and above)" name="BusinessRole" >Claims Executive (VP and above)</option>
            <option id="field3" value="Claims Manager (Manager or Director)" name="BusinessRole" >Claims Manager (Manager or Director)</option>
            <option id="field3" value="Procurement" name="BusinessRole" >Procurement</option>
            <option id="field3" value="Info. Systems / Info. Technology" name="BusinessRole" >Info. Systems / Info. Technology</option>
            <option id="field3" value="Collision Claims Software User" name="BusinessRole" >Collision Claims Software User</option>
            <option id="field3" value="Other" name="BusinessRole" >Other</option>
            </select>-->
            <select id="mymenu" size="1">
<option value="nothing" selected="selected">Select a site</option>
<option value="1">Invest Frenzy</option>
<option value="2">Xiontex</option>
<option value="3">Google</option>
</select>
            </td>
          </tr>
          <tr>
            <th colspan="2" align="left" valign="bottom">Account Information</th>
          </tr>
          <tr>
            <td><label>Business Name<span class="required">*</span></label></td>
            <td><input id="field4" value="" type="text" name="company" /></td>
          </tr>
          <tr>
            <td><label>Business Type<span class="required">*</span></label></td>
            <td><select id="field5" value="" name="BusinessType">
            <option value="" selected="selected" id="field5" name="BusinessType" >Select&hellip;</option>
            <option id="field5" value="Independent Appraisal Firm" name="BusinessType" >Independent Appraisal Firm</option>
            <option id="field5" value="Insurer" name="BusinessType" >Insurer</option>
            <option id="field5" value="Rental Agency" name="BusinessType" >Rental Agency</option>
            <option id="field5" value="Other" name="BusinessType" >Other</option>
            </select>
            </td>
          </tr>
          <tr>
            <td><label>Area of Interest<span class="required">*</span></label></td>
            <td><select id="field6" value="" name="AreaofInterest">
            <option value="" selected="selected" id="field6" name="AreaofInterest" >Select&hellip;</option>
            <option id="field6" value="Appraisal" name="AreaofInterest" >Appraisal</option>
            <option id="field6" value="Customer Satisfaction Scoring" name="AreaofInterest" >Customer Satisfaction Scoring</option>
            <option id="field6" value="Dispatch" name="AreaofInterest" >Dispatch</option>
            <option id="field6" value="DRP Management" name="AreaofInterest" >DRP Management</option>
            <option id="field6" value="Reporting" name="AreaofInterest" >Reporting</option>
            <option id="field6" value="Resource Management" name="AreaofInterest" >Resource Management</option>
            <option id="field6" value="Review / Audit / Reinspection" name="AreaofInterest" >Review / Audit / Reinspection</option>
            <option id="field6" value="Salvage" name="AreaofInterest" >Salvage</option>
            <option id="field6" value="Total Loss" name="AreaofInterest" >Total Loss</option>
            <option id="field6" value="Workflow" name="AreaofInterest" >Workflow</option>
            <option id="field6" value="Other" name="AreaofInterest" >Other</option>
            </select>
            </td>
          </tr>
          <tr>
            <td><label>Annual Claims Volume<span class="required">*</span></label></td>
            <td><select id="field7" value="" name="AnnualClaimsVolume">
            <option value="" selected="selected" id="field7" name="AnnualClaimsVolume" >Select&hellip;</option>
            <option id="field7" value="<10,000" name="AnnualClaimsVolume" >&lt;10,000</option>
            <option id="field7" value="10,000 - 20,000" name="AnnualClaimsVolume" >10,000 - 20,000</option>
            <option id="field7" value="20,001 - 40,000" name="AnnualClaimsVolume" >20,001 - 40,000</option>
            <option id="field7" value="40,001 - 50,000" name="AnnualClaimsVolume" >40,001 - 50,000</option>
            <option id="field7" value="60,001 - 80,000" name="AnnualClaimsVolume" >60,001 - 80,000</option>
            <option id="field7" value="80,001 - 100,000" name="AnnualClaimsVolume" >80,001 - 100,000</option>
            <option id="field7" value="100,001+" name="AnnualClaimsVolume" >100,001+</option>
            </select>
            </td>
          </tr>
          <tr>
            <td><label>Account Number</label></td>
            <td><input id="field8" value="" type="text" name="accountNumber" /></td>
          </tr>
          <tr>
            <td><label>Business Phone<span class="required">*</span></label></td>
            <td><input id="field9" value="" type="text" name="businessPhone" /></td>
          </tr>
          <tr>
            <td><label>Fax</label></td>
            <td><input id="field10" value="" type="text" name="fax" /></td>
          </tr>
          <tr>
            <td height="33" valign="top"><label>Email Address<span class="required">*</span></label></td>
            <td><input id="field11" value="" type="text" name="emailAddress" /></td>
          </tr>
          <tr>
            <td><label>Zip Code<span class="required">*</span></label></td>
            <td><input id="field12" value="" type="text" name="ZipCode" /></td>
          </tr>
          <tr>
            <th colspan="2" align="left" valign="bottom">&nbsp;</th>
          </tr>
          <tr>
            <th colspan="2" align="left" valign="bottom"><label>Information Requested</label></th>
          </tr>
          <tr>
            <td height="99" colspan="2"  valign="top"><textarea name="InformationRequested" rows="8" id="field13"></textarea>
            </td>
            </tr>
          <tr>
            <td colspan="2">&nbsp;</td>
          </tr>
          <tr>
            <td width="183"><label>Interest</label></td>
            <td><select id="field14" value="" name="Interest">
            <option value="" selected="selected" id="field14" name="Interest" >Make a Selection</option>
            <option id="field14" value="Unsure" name="Interest" >Unsure</option>
            <option id="field14" value="Interested in Purchasing" name="Interest" >Interested in Purchasing</option>
            <option id="field14" value="Just Looking" name="Interest" >Just Looking</option>
            </select>
            </td>
          </tr>
          <tr>
            <td><label>Purchasing Timeline</label></td>
            <td><select id="field15" value="" name="PurchasingTimeline">
            <option id="field15" value="" name="PurchasingTimeline" >Make a Selection</option>
            <option id="field15" value="Within 30 Days" name="PurchasingTimeline" >Within 30 Days</option>
            <option id="field15" value="30-90 Days" name="PurchasingTimeline" >30-90 Days</option>
            <option id="field15" value="+90 Days" name="PurchasingTimeline" >+90 Days</option>
            </select>
            </td>
          </tr>
          <tr>
            <td colspan="2">&nbsp;</td>
          </tr>
          <tr>
            <td>&nbsp;</td>
            <td align="right"><input id="field16" value="Send Request" type="submit" /></td>
          </tr>
          <tr>
            <td height="37" colspan="2"><span style="color: #C00">*</span> Required fields are marked with an asterisk. </td>
          </tr>
          <tr>
            <td height="37" colspan="2">If you wish to contact us directly, please call 1-800-238-9111.</td>
            </tr>
        </table>
      

	<input value="APD-Claims-Contact" type="hidden" name="elqFormName"  />
    <input value="2441" type="hidden" name="elqSiteId"  />
    <input name="elqCampaignId" type="hidden"  />
    </form>


<!--<script type="text/javascript" >var field0 = new LiveValidation("field0", {validMessage: "", onlyOnBlur: true});field0.add(Validate.Presence, {failureMessage:"This field is required"});var field1 = new LiveValidation("field1", {validMessage: "", onlyOnBlur: true});field1.add(Validate.Presence, {failureMessage:"This field is required"});var field2 = new LiveValidation("field2", {validMessage: "", onlyOnBlur: true});field2.add(Validate.Presence, {failureMessage:"This field is required"});var field3 = new LiveValidation("field3", {validMessage: "", onlyOnBlur: true});field3.add(Validate.Presence, {failureMessage:"This field is required"});var field4 = new LiveValidation("field4", {validMessage: "", onlyOnBlur: true});field4.add(Validate.Presence, {failureMessage:"This field is required"});var field5 = new LiveValidation("field5", {validMessage: "", onlyOnBlur: true});field5.add(Validate.Presence, {failureMessage:"This field is required"});var field6 = new LiveValidation("field6", {validMessage: "", onlyOnBlur: true});field6.add(Validate.Presence, {failureMessage:"This field is required"});var field7 = new LiveValidation("field7", {validMessage: "", onlyOnBlur: true});field7.add(Validate.Presence, {failureMessage:"This field is required"});var field8 = new LiveValidation("field8", {validMessage: "", onlyOnBlur: true});var field9 = new LiveValidation("field9", {validMessage: "", onlyOnBlur: true});field9.add(Validate.Presence, {failureMessage:"This field is required"});var field10 = new LiveValidation("field10", {validMessage: "", onlyOnBlur: true});var field11 = new LiveValidation("field11", {validMessage: "", onlyOnBlur: true});field11.add(Validate.Presence, {failureMessage:"This field is required"});field11.add(Validate.Email, {failureMessage:"A valid email address is required"});var field12 = new LiveValidation("field12", {validMessage: "", onlyOnBlur: true});field12.add(Validate.Presence, {failureMessage:"This field is required"});var field13 = new LiveValidation("field13", {validMessage: "", onlyOnBlur: true});var field14 = new LiveValidation("field14", {validMessage: "", onlyOnBlur: true});var field15 = new LiveValidation("field15", {validMessage: "", onlyOnBlur: true});</script>
--><!--<form id="signupForm" method="get" action="formmail.asp">
		

		<p>
			<label for="firstname">Firstname</label>
			<input id="firstname" name="firstname" />
		</p>
		<p>
			<label for="lastname">Lastname</label>
			<input id="lastname" name="lastname" />
		</p>
		<p>
			<label for="email">Email</label>
			<input id="email" name="email" />
		</p>
		<p>
			<input class="submit" type="submit" value="Submit"/>
		</p>

</form>
 -->
          </div>
  <!-- END BODY COPY -->
	<!-- BEGIN RIGHT COLUMN -->
          <div class="right-col">
          
            <div class="right-col-box">
			  <img src="../../../images/contact-information-inset.jpg" width="189" height="120" alt="Workers' Compensation Management Software" /><br /><br />
              <div class="press-box">
						<h2>Press</h2>
						<h5><a href="../../../media-center/pr-apd-2012-permanent-general-selects-mitchell.asp"><strong>Permanent General Selects Mitchell as Exclusive Provider of Physical Damage Claims Solutions</strong></a></h5>
						<p><strong>April 2, 2012</strong><br />
						  Leading insurer chooses WorkCenter&trade;, a complete end-to-end integrated physical damage claims processing 
          solution&hellip;<br />
						<a href="../../../media-center/pr-apd-2012-permanent-general-selects-mitchell.asp">Full Article &gt;&gt;</a></p>
						<a href="../../../media-center/pressrelease.asp" class="read-more">&gt;&gt; Read More Mitchell Press</a>
					</div>
             
            </div>
          </div>
	<!-- END RIGHT COLUMN -->
    </div>
        <div class="clear"></div>
  </div>
</div>
<!-- BEGIN FOOTER -->
<div class="footer">
  <div class="footer-box">
    <h6><a href="../../../claims-management-software/index-claims-processing-workflow-solutions.asp">Claims Management Solutions</a></h6>
    <ul>
      <li><a href="../../../claims-management-software/insurance-claims-processing/index-insurance-claims-software.asp">Collision Claims Management Software</a></li>
      <li><a href="../../../claims-management-software/medical-claims-processing/index-medical-processing-software.asp">Medical Claims Processing Software</a></li>
      <li><a href="../../../claims-management-software/workers-compensation-claims/index-management-software-smartadvisor.asp">Workers' Compensation Management Software</a></li>
    </ul>
  </div>
  <div class="footer-box">
    <h6><a href="../../../auto-repair-shop-software/index-auto-shop-management-software.asp">Repair Shop Solutions</a></h6>
    <ul>
      <li><a href="../../../auto-repair-shop-software/auto-shop-management-software.asp">Auto Shop Management Software</a></li>
      <li><a href="../../../auto-repair-shop-software/estimating-and-imaging.asp">Estimating &amp; Imaging</a></li>
      <li><a href="../../../auto-repair-shop-software/collision-repair-optimization.asp">Collision Repair Optimization</a></li>
      <li><a href="../../../auto-repair-shop-software/glass-invoicing-workflow-solutions.asp">Glass &amp; Invoicing Workflow</a></li>
      <li><a href="../../../auto-repair-shop-software/mitchell-collision-guide-store.asp">The Mitchell Collision Guide Store</a></li>
    </ul>
  </div>
  <div class="footer-box last">
    <h6><a href="../../../company/index-about-mitchell-international.asp">Company</a></h6>
    <h6><a href="../../../company/mitchell-our-history.asp">Our History</a></h6>
    <h6><a href="../../../company/mitchell-technology.asp">Mitchell Technology</a></h6>
    <ul class="follow-list">
      <li><a href="http://twitter.com/Mitchell_Intl" target="_blank" class="tweeter" onClick="recordOutboundLink(this, 'Outbound Links', 'twitter.com/Mitchell_Intl');return false;">Twitter</a></li>
      <li><a href="http://www.youtube.com/user/MitchellIntl" target="_blank" class="youtube" onClick="recordOutboundLink(this, 'Outbound Links', 'youtube.com/user/MitchellIntl');return false;">YouTube</a></li>
      <li><a href="http://www.linkedin.com/company/mitchell-international" target="_blank" class="linkedin" onClick="recordOutboundLink(this, 'Outbound Links', 'linkedin.com/company/mitchell-international');return false;">LinkedIn</a></li>
      <li><a href="http://www.collisionhub.com/" target="_blank" class="other" onClick="recordOutboundLink(this, 'Outbound Links', 'collisionhub.com');return false;">CollisionHub</a></li>
      <li><a href="http://www.mitchell.com/" class="mitchell">Mitchell</a></li>
    </ul>
  </div>
</div>
<div class="subfooter">
<a href="../../../contactus.asp">Contact Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="../../../legal/mitchell_terms.asp">Terms of Use</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="../../../legal/mitchell_privacy.asp">Privacy Practices</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="../../../legal/mitchell_copyright.asp">Copyright &amp; Usage</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="mailto:&#119;&#101;&#098;&#109;&#097;&#115;&#116;&#101;&#114;&#064;&#109;&#105;&#116;&#099;&#104;&#101;&#108;&#108;&#046;&#099;&#111;&#109;">[+] Report a Problem</a><br /><br />
&copy; 2011 Mitchell International, Inc. All Rights Reserved. By accessing Mitchell.com, each user agrees that they have read and agreed to be bound by the Terms and Conditions governing Mitchell.com and Privacy Policies governing Mitchell.com.
</div>
<!-- END FOOTER -->
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of xiontex
xiontex
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
also i suggest first just copy and paste the original post response I gave in a separate NEW html file and then once you see it work try plugging it into the rest of your page.
OK, much better that seems to be working now. I see that it currently opens in a new window, I want to see if we can load the page without opening a new window as the page that will be loaded is part of the same site and domain. Much Appreciated...
OK, I figured out the last bit, Thanks!
No prob