//
//  Copyright (c) 1999-2001 Financial Technology Solutions, Inc. All rights reserved.
//
function storeFrame(doc) 
{
	var str;
	var loc = "http://www.getthemostforyourmoney.com";
	str = doc.href.toLowerCase();
	if (top.location.href.indexOf("canvas.htm") == -1) {
	  
	    var pos = str.indexOf(".com/");
	  	if (pos > -1) {
		  var name = doc.href.substring(pos+5, doc.href.length);
		  loc =  "canvas.htm?"+name+"&Middle";
		  pos = str.indexOf("/deals/");

		  if (pos > -1) {
		    loc = "../" + loc;
		  }
		  else { 
		    pos = str.indexOf("/products/");
		    if (pos > -1) {
		      loc = "../" + loc;
		    }                                  
		    else { 
		      pos = str.indexOf("/insiders");
		      if (pos > -1) {
		        loc = "../" + loc;
		      }
		    }
          }
	  	}
		top.location.href = loc;
	}
	return true;
}

function indexFrame(doc) 
{
}

