/* 
 * Site-wide JavaScript API
 * Voelker Industries
 *
 * imminent 2006 
 * http://imminent.com
 *
 * $Id: site.js,v 1.2 2004/02/13 21:49:56 dfp Exp $>
 */

/*
 * Don't let anyone load this page into some other page
 */
function forceInclusion (home) 
{
	var server = top.location.href.split(":")[1];
	server = server.split("/")[2];
	
	if ( server != home ) 
	{
		alert("server=["+server+"],  home = ["+home+"]");
	
		top.location = 'http://' + home;
	}
}

