<!-- Begin
var message="Did you remember to add this page to your favorites or bookmark it? If not, please go back and do it now so you can find us again !!!"
document.cookie="test"
var toalert=true
var results=document.cookie.split(";")
for (n=0;n<=results.length-1;n++){
if (results[n].substring(1,8)=='alerted'){
toalert=false
break
}
}
function bookmarkme(){
if (document.cookie!=''&&toalert){
alert(message)
document.cookie="alerted=yes"
}
}
// End -->
