var pic="superstas.jpg";
function check()
{
	if (document.getElementById) return 1;
	if (document.all) return 2;
	return 0;
}
function full(pic)
{
 var newWindow=window.open("","","toolbar=no,menubar=no,width=900,height=700,color=#ffffff");
 newWindow.document.write("<html><head><title>"+pic+"</title></head><body bgcolor=#ffffff><center><img src=\'http://barbulators.com/photos/"+pic+"\'><br><a href=\"javascript:close();\">close</a> </center></body></html>");
newWindow.document.close();
newWindow.focus();
}
function show(file)
{
	switch(check())
	{
		case 0: alert("Too old browser version!");break;
		case 1:	document.getElementById("one").style.overflow="hidden";
			document.getElementById("one").innerHTML="<center><a href=\"javascript:full('full"+file+"');\" title=\"Full screen\"><img src=\"photos/full"+file+"\"></a></center>";
			document.getElementById("one").style.overflow="auto";break;
		case 2: pic="full"+file;
			document.all['one'].style.overflow="hidden";
                         document.all['phot'].src="/photos/full"+file;
                         document.all['one'].style.overflow="auto";break;
                 default: break;
         }
}