// JavaScript Document

//-->  pop-up

// --> change width and height to resize window

var attn = null;
function new_window(url) {

attn = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=400,height=530,left=110,top=110");

}

function blowOut() {
  if (attn != null && attn.open) attn.close();
}
    
window.onfocus=blowOut;


function addToFavorite(favTitle){ if ((navigator.appVersion.indexOf("MSIE") > 
0) && (parseInt(navigator.appVersion) >= 4)) { window.external.AddFavorite(location.href, 
unescape(favTitle)); 
	} 
} 
