function appear() {	
if(op < 1) {
	op += 0.1;
	wObj.style.opacity = op;
	wObj.style.filter='alpha(opacity='+op*100+')';
	t = setTimeout('appear()', 70);}
}

function openPhoto(img,wdt,hgh){
	var groundDiv = document.createElement("DIV");
    groundDiv.id = "divground";
	groundDiv.style.display='block';
	document.body.appendChild(groundDiv);

	var windowDiv = document.createElement("DIV");
    windowDiv.id = "divwindow";
	windowDiv.style.display='block';
	if (wdt!=''){
	windowDiv.style.width=wdt+'px';
	windowDiv.style.marginLeft= '-'+wdt/2+'px';}
	if (hgh!=''){
	windowDiv.style.height=hgh+'px';
	windowDiv.style.marginTop= '-'+hgh/2+'px';}
	document.body.appendChild(windowDiv);
	windowDiv.innerHTML='<img src="photo/'+img+'" title="Закрыть окно" onclick="closeButton()">';

wObj=document.getElementById('divwindow');
op=0;	
appear();
}

function openText(text){
	var groundDiv = document.createElement("DIV");
    groundDiv.id = "divground";
	groundDiv.style.display='block';
	document.body.appendChild(groundDiv);

	var windowDiv = document.createElement("DIV");
    windowDiv.id = "divwindow";
	windowDiv.style.display='block';
	document.body.appendChild(windowDiv);
	windowDiv.innerHTML='<div id="loadtext" title="Закрыть окно" onclick="closeButton()">'+text+'</div>';

wObj=document.getElementById('divwindow');
op=0;	
appear();
}

function  closeButton(){
var obj = document.getElementById('divground');
obj.parentNode.removeChild(obj);
var obj2 = document.getElementById('divwindow');
obj2.parentNode.removeChild(obj2);
}

function Links(lin){
	window.location.href='http://www.a177.ru/'+lin;
	return false;
}
