// script to load page in parent frameset, if users requests page directly
// L. Ebert, July 12, 2006
// updated for roll, barresi design team

if (window.top == window) {
    var parentURL = "http://www.rollbarresi.com/designteam/designteam_index.html";
		var childURL = window.location.href;
		var reframeURL = parentURL + "?" + childURL;
		location.href = reframeURL;
} 

