(drool)
// returns true if file is on specified server.
// returns false if file is not on specified server.
// server format - http://www.myDomain.com
function atHome(myDomain){
if(_root._url.indexOf(myDomain)==0){
text1=true;
}else if(_root._url.indexOf("file://")==0){
text1=false;
}else{
text1=false;
}
return text1;
}