﻿// JScript File
    function bookmark(url,title){

        if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
            window.external.AddFavorite(window.location.href,window.document.title );
        } else if (navigator.appName == "Netscape") {
            window.sidebar.addPanel(window.document.title, window.location.href,""); 
        } else {
            alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
        }
    }
    
    function saveImageAs (imgOrURL) {
	if (typeof imgOrURL == 'object')
		imgOrURL = imgOrURL.value;
	
	newWindow = window.open(imgOrURL, "SaveImage", "directories=no,status=no,menubar=no,toolbar=no,res izable=no,top=100000,left=100000,width=0,height=0");
	newWindow.document.execCommand('SaveAs', true);
	newWindow.close();
	return false;

