function popupfoto (url, width, height) {
	//alert(url+ width+ height);
	div = document.getElementById('divgroot');
	div.innerHTML = "<a href=\"#\" onclick=\"closediv(); return false;\">close</a>";
	div.innerHTML += "<br /><img src=\""+pageBaseUrl+"img/big/"+url+"\" onclick=\"closediv(); return false;\" />";
	view();
	setDivGrootSize(width,height+20);
	//if( div.style.display != 'inline' )
	//	div.style.display = 'inline';
	return false;
}
