// script to load page in parent frameset, if users requests page directly
// L. Ebert, December 26, 2005
// updated for roll, barresi

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