// JavaScript Document

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;
	}
}


function OpenFotoWindow() {
	window.open('', 'detail', 'menubar=0, width=640, height=480, scrollbars=1, resizable=1, toolbar=0, location=0, status=0');
}
