/*=======================================================================
--	CREATED BY: LINH T. NGUYEN - LINHBURIN@YAHOO.COM
--	CREATED DATE: FEB 3, 2010
--	LAST UPDATE: FEB 3, 2010
=======================================================================*/
function bookmark(title, url)
{
	/***********************************************
	* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
	* This notice MUST stay intact for legal use
	* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
	***********************************************/

	if (window.sidebar){ // firefox
		window.sidebar.addPanel(title, url, "");
	}else if(window.opera && window.print){ // opera
		var elem = document.createElement('a');
		elem.setAttribute('href',url);
		elem.setAttribute('title',title);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	else if(document.all){// ie
		window.external.AddFavorite(url, title);
	}
}

/***********************************
	POP-UP WINDOW
***********************************/
function popup(url, width, height)
{
	/*
		Pop-up a window
	*/
	var newwindow;
	newwindow=window.open(url,'name','width='+width+', height='+height+', scrollbars=no, locationbar=false');
	if (window.focus) {newwindow.focus()}
}