function setAction(action,frmname) {
	document.forms[frmname].axn.value = action;
	return true;
}

function submitSearch(searchstr) {
	document.forms[0].newname.value = searchstr;
	document.forms[0].submit();
	return false;
}

function ensureSecure(rootpath,domainname) {
   var nl=document.URL.lastIndexOf("/");
   var filename =document.URL.substr(nl+1)
   if ( document.location.protocol != "https:" ) {
		if ( document.location.host == domainname ) {
			document.location = rootpath + filename;
		}
		if ( document.location.host == ("www." + domainname) ) {
			document.location = rootpath + filename;
		}
	}
}


function writeFooter() {

// open table
   document.write ('<div align="center"><table border="0" cellpadding="5" cellspacing="0">\n');
// first row
   document.write (
      ' <tr><td class="footer" colspan="2">'
      + '<img src="../../Graphics/general/squigline.gif" WIDTH="281" HEIGHT="29">'
      + '<a href="../../currencyconvert.htm" target="Products"><img border="0" '
      + 'src="../../Graphics/general/currencyCVTbut.gif" '
      + 'width="99" height="30"></a>'
      + '</td></tr>\n');

// second row
   document.write (
      '<tr><td class="footer">'
      + '<a href="../../home.asp" target="_top"><img '
      + 'src="../../Graphics/general/SMsq1logo.gif" alt="Square One"'
      + ' border="0" width="175" height="57"></a></td>\n'
		+ '<td class="footer2">'
      + '<a href="mailto:sales@square1.com">sales@Square1.com</a><br>'
      + 'TOLL-FREE ORDER LINE: 1-800-877-7191 (US Only)<br>'
      + 'Voice: 951-657-8260<BR>Fax: 951-657-8179'
      + '</td></tr>\n');

// third row
   document.write (
      '<tr><td class="footer" colspan="2">'
      + '<span class="smallblue">Blue Skies!<br></span>'
      + 'Prices subject to change without notice.'
      + '</td></tr>\n');

// fourth row
   document.write (
       '<tr><td  colspan="2" class="footer" valign="middle" align="center">'
      + 'All pictures, text and graphics may not be used without prior'
      + ' written permission.<BR>'
      + '&copy; Copyrighted by '
      + '<a href="../../home.asp" target="_top">'
      + '<span class="smallblue">Square One Parachutes</span></a>'
      + ' Inc. 1998-2005.'
      + '</td></tr>\n' );
// close table
   document.write("</table>\n<BR></div>\n");

// close document
   document.write("</body>\n</html>\n");
}