function openWindow(url, w, h) {
    var options = 'left=0,top=0,width=' + w + ',height=' + h + ',';
    options += 'resizable=no,scrollbars=yes,status=yes,';
    options += 'menubar=no,toolbar=no,location=no,directories=no';
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
}

function addBookmark(title,url) {
	if (window.sidebar) {
		window.sidebar.addPanel(title, url,"");
	} else
		if( document.all ) {
			window.external.AddFavorite( url, title);
		} else  {
			alert("Your browser don't support this request, use ctrl-D");
			return true;
		}
}