// Partners.js javascript file
//
// This file contains a function to take the user to a specific partner's subsite, based
// on his choice from a dropdown menu

function OnSubmitPartnerForm()
{
	window.location.href = "http://www.solutionsciences.com/" + document.forms[0].elements[0].options[document.forms[0].elements[0].selectedIndex].value;
	return false;
}

