[code]<script>
function bookmark( siteUrl, siteName ) {
var applicationName = window.navigator.appName;
if(applicationName == "Microsoft Internet Explorer") {
window.external.AddFavorite( siteLink, siteName );
} else {
window.alert( "For Mozilla, press Ctrl + D, else you need to bookmark it manually." );
}
}
</script>
[/code]
function bookmark( siteUrl, siteName ) {
var applicationName = window.navigator.appName;
if(applicationName == "Microsoft Internet Explorer") {
window.external.AddFavorite( siteLink, siteName );
} else {
window.alert( "For Mozilla, press Ctrl + D, else you need to bookmark it manually." );
}
}
</script>
[/code]