<!-- HideIt 

function enforceframeset(urltoenforce,pagetoenforce) {
	// window.alert("x"+parent.frames[0].name);
	// window.alert("efs"+location.search.substring(1));
	// window.alert(urltoenforce);
	// window.alert(document.location.hostname);
	if ("ts629" != location.search.substring(1)) {
	//  window.alert("uh oh!");
	// When our web page is framed by an alien web site
	// if (urltoenforce != top.location.hostname) {
	// window.alert(urltoenforce);
    // top.location.href="http://"+urltoenforce+"/?ts629?"+pagetoenforce;
	top.location.replace("http://"+urltoenforce+"/?ts629?"+pagetoenforce);
	}
//    if (top.location.href == "http://www.pistoncoating.com/legal.htm") {
//        top.location.href="http://www.pistoncoating.com/?legal.htm";
//    }		
}

function enforcehome() {
    // Very specific frame confirmation
    var urlpattern = /www.t-shirt-printers.com/;
    // window.alert(parent.location.search.substring(1));
    if (!urlpattern.test(top.location.href)) {
        top.location.href="http://www.t-shirt-printers.com/"; 
    }
    if (top.document.location.href == "http://www.t-shirt-printers.com/home.htm") {
        top.location.href="http://www.t-shirt-printers.com/"; 
    }
}
// --> 
