// JavaScript Document

function phone() {
	pageSize();
	var element = document.getElementById('dynamic');
	element.innerHTML = '<div id="contents" style="position: absolute; top: '+((myHeight - 138) / 2)+'px; left: '+((myWidth - 774) / 2)+'px; width: 766px; height: 128px; padding-top: 5px; padding-bottom: 5px; text-aligment: center; font-size: 100px; font-family: Arial; background-color: #000; border: 4px solid #fff;">(0191) 275 0198</div>';
	element.style.height = myHeight + 'px';
	element.style.display = 'block';
	element.style.opacity = 1.0;
	
	element.onclick = function () {
		document.getElementById('dynamic').style.display = 'none';
		document.getElementById('dynamic').style.opacity = 0.0;
		
		window.onresize = null;
	};
	
	window.onresize = function () {
		pageSize();
		var element = document.getElementById('dynamic');
		element.style.height = myHeight + 'px';
		
		var element = document.getElementById('contents');
		element.style.top = ((myHeight - 138) / 2) + "px";
		element.style.left = ((myWidth - 774) / 2) + "px";
	};
}