Hope this helps:
Code:
<script type="text/javascript">
window.onload=function(){
var nicepage='http://www.dynamicdrive.com', // Set the address of the page you think is nice
lovepage='http://www.google.com', // Set the address of the page you think you love
url='http://www.whatever.com'; // Set the address you want to compare
switch(url){
case nicepage:alert('This is a nice page.');break;
case lovepage:alert('I love this page.');break;
default: alert('I neither love nor find this page nice.');
}
}
</script>
Bookmarks