// JavaScript Document
function WebOnly(msg, dmy){
var str = document.location.protocol;
str = str.toLowerCase();
if (str == 'file:'){
document.write(dmy);
}else{
document.write(msg);
}
}
