// JavaScript Document

function addToFavorites(url,title)
{
        //var url = "http://www.webart.com/";
        //var title = "WebArt Active Media";

        if (window.sidebar) { // firefox
                window.sidebar.addPanel(title, url,"");
        }else if( document.all ) { //MSIE
                window.external.AddFavorite( url, title);
        }else if(window.opera && window.print) { // Opera
                return true;
        }else {
                alert("Sorry, your browser doesn't support this");
        }
}


var str = "left=0,screenX=0,top=0,screenY=0";

if (window.screen) {
  var ah = 400;
  var aw = 600;
  str += ",height=" + ah;
  str += ",innerHeight=" + ah;
  str += ",width=" + aw;
  str += ",innerWidth=" + aw;
} else {
  str += ",resizable"; // so the user can resize the window manually
}

function launchFull(url, name, features) {
  return window.open(url, name, str + features);
}



