function edit(str){
	ret=window.showModalDialog("prg/edit.php?type="+str,"Редактирование","dialogwidth=300px; dialogheight=400px; center=1; resizable=0; scroll=0; status=0");
}

function article(str){
	ret=window.showModalDialog("prg/article_edit.php?name="+str,"Редактирование","dialogwidth=500px; dialogheight=550px; center=1; resizable=0; scroll=0; status=0");
}

function wiev_pic(str){
	ret=window.showModalDialog("prg/wiev_pic.php?name="+str,"Просмотр изображения","dialogwidth=800px; dialogheight=600px; center=1; resizable=1; scroll=0; status=0");
}

function info(layerName){
	if(document.getElementById(layerName).style.display=='none'){
		document.getElementById(layerName).style.display='block';
	}else{    
		document.getElementById(layerName).style.display='none';
	}
return void[0];
}

function rating(str){
	location='docum/rating.php?rt='+str;
return void[0];
}
function usrsetmap(str){
	location='docum/usersetmap.php?id='+str;
return void[0];
}

function sure(href){if(confirm("Вы уверены?")){location.href=href;}}
