//	If internal document is accessed from an external source,
//		replace with index page...

if (0) { // not working with ie6 anymore...

if (top.ds == null && location.href.indexOf("http:") != -1) {
	var fn = "http://www.matchmake.com/index.htm";
	
	// Use replace if browswer supports it...

	if (document.images)
    		location.replace(fn);
	else
    		location.href = fn;
}

// Set default status message...

defaultStatus = top.ds;
}
