function confirmLink(theLink, theText)
{
    var is_confirmed = confirm('Вы действительно хотите ' + theText + '?');
return is_confirmed;
}

function openFullPic(theURL,winName,w,h,title) {

  var left = ((screen.width-w)/2)-40;
  var top = ((screen.height-h)/2)-40;
  w=w+40;
  h=h+42; feat_full='resizable=no,location=no,menubar=yes,scrollbars=yes,status=yes,left='+left+',top='+top+',toolbar=yes,fullscreen=no, dependent=no, width='+w+', height='+h+'';
  openwindow=window.open("",winName,feat_full);
  openwindow.document.write("<HTML><HEAD><TITLE>Йогиня.ру / "+title+"</TITLE>");
  openwindow.document.write("<STYLE> body {font-family: Arial, Verdana; background-color: #e1e1e1;}; </STYLE>");
  openwindow.document.write("</HEAD><BODY>");
  openwindow.document.write("<DIV align='center'><A style='color: #0000FF;' HREF='#' onclick='window.close();' title='Закрыть окно'><IMG style='border: 1px solid #999;' src='"+theURL+"'></A></DIV>");
  openwindow.document.write("<P align='center' style='font-size: 80%;'><A style='color: #0000FF;' HREF='#' onclick='window.close();'>Закрыть окно</A></P>");
  openwindow.document.write("</BODY></HTML>");
  return false;
}

function ShowHideId(divname) {
 	var obj = document.getElementById(divname);
if (obj.style.display == "none"){
 	obj.style.display = "block";
 	} else {
 	obj.style.display = "none";
 	}
	return false;
}
