function makeCall(number)
{
  var wnd = window.open("http://www.sitephone.ru/sp.htm?" + number, "callWindow","height=160,width=340,status=no,toolbar=no,menubar=no,location=no");
  wnd.focus();
  return false;
}

function sppopup(show)
{
	if(show) {
		document.getElementById("sitephone_popup").style.display='';
	}
	else {
		document.getElementById("sitephone_popup").style.display='none';
	}
}

