function WindowPopup(url, width, height)
{
	var newWindow;

	///alert(url);
	
	if (parent.newWindow) newWindow.close();
	
	newWindow = window.open(url, 'popup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no, width=' + width + ', height=' + height );
	//newWindow = window.open(url, 'popup', 'toolbar=no,location=yes,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes, width=' + width + ', height=' + height );
	newWindow.focus();
}

function AddToFavorites(url, title)
{
	if (window.sidebar) window.sidebar.addPanel(title, url,"");
	else if( window.external ) window.external.AddFavorite( url, title);
}