/**
 * Bookmark objects
 * @version 1.0
 */
 /*
var bookmark = {
	addBookmark: function(title, url){
		if (document.all) window.external.AddFavorite(url, title);
		else if (window.sidebar) window.sidebar.addPanel(title, url, "");
	}
}
*/

function addBookmark(title,url) {
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}

/**
 * Popup window objects
 * @version 1.0
 */
var popUp = {
	/**
	 * Use to open new browser window
	 * @param String title
	 * @param String url
	 */
	popUp: function(url, winName, type, w, h) {
		var opt = "";
		if (type == "console") opt = "resizable,height="+h+",width="+w;
		if (type == "fixed") opt = "status,height="+h+",width="+w;
		if (type == "elastic") opt = "status,scrollbars,resizable,height="+h+",width="+w;
		window.open(url, winName, opt);
	}
}
