//bookmark this page
function addToFavorites(urlAddress,pageName)
{
	
	if (window.sidebar) 
	{ 
		// Mozilla Firefox Bookmark
		window.sidebar.addPanel(pageName,urlAddress,"");
	}else if( window.external ) { 
		// IE Favorite
		window.external.AddFavorite(urlAddress,pageName); 
	}else if(window.opera && window.print) { 
		// Opera Hotlist
		return true; 
	}else { 
		alert("Sorry! Your browser doesn't support this function."); 
	}	
} 
//popup junction
function popup(url,height,width) 
{
	var myWin; 
	var y=(screen.height/2)-(height/2);
	var x=(screen.width/2)-(width/2);
	myWin = window.open(url, "","width="+width+",height="+height+",location=0,directories=0,status=0,menubar=1,scrollbars=0,resizable=0,top="+y+",left="+x);
	myWin.focus();
}