<!--

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}
//-->

<!--

function openURL()
{

      // grab index number of the selected option
      selInd = document.theForm.aaa.selectedIndex;

      // get value of the selected option
      goURL = document.theForm.aaa.options[selInd].value;

      // redirect browser to the grabbed value (hopefully a URL)
      top.location.href = goURL;

}

//-->

<!--
function mailpage()
{
mail_str = "mailto:?subject=Stones RV & Home Center"
mail_str += "&body=I thought you might be interested in this new website for Stones RV & Home Center."
mail_str += " The website address is www.stonesrv.com."
location.href = mail_str;
}
//-->

<!--
var remote = null;
function rs(n,u,w,h) {
remote = window.open(u, n, 'width=' + w + ',height=' + h +',resizable=no,menubar=no,scrollbars=auto');
if (remote != null) {
if (remote.opener == null)
remote.opener = self;
window.name = 'StonesRoot';
remote.location.href = u;
}
}
//-->
<!--
function changeImages() {
if (document.images ) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
}
}
}
//-->