// JavaScript Document
initOnLoad("contacts"); 

function initOnLoad(sElementName) {  
	var oElement = (sElementName == "body") ? document[sElementName] : 
		document.getElementById(sElementName); 
	if(oElement != null && typeof(oElement) != "undefined") { Contacts(); } 
	else { setTimeout(function() { initOnLoad(sElementName); }, 0); } 
} 

function Contacts(){
document.getElementById('contacts').innerHTML = '03151, г. Киев, ул. Народного Ополчения, 5<br />Институт кардиологии им.  Н.Д. Стражеско<br />корп. 2, эт. 3, отделение аритмии сердца<br /><br />моб.: +38 (050) 357-96-43<br />моб.: +38 (050) 410-75-57<br />тел./факс: +38 (044) 537-36-86<br />';
}
function infoWind(){
var newwindow = window.open('http://cardiospec.com.ua/contacts/','','toolbar=0, location=0,directories=0, menubar=0, scrollbars=0, resizable=0, width=600, height=750, left=150, top=50');
}