// JavaScript Document

function contactus() {
	pageSize();
	var element = document.getElementById('dynamic');
	element.innerHTML = '<div id="contents" style="position: absolute; top: '+((myHeight - 256) / 2)+'px; left: '+((myWidth - 400) / 2)+'px; width: 400px; height: 236px; padding-top: 20px; padding-bottom: 0px; text-aligment: center; font-size: 18px; font-family: Arial; background-color: #000; border: 4px solid #fff;">\
<div style="font-size: 36px;">VTK Domestic</div>\
<br />\
Tel: (0191) 275 0198<br />\
Mobile: 07947613473<br /><br />\
info@vtkdomestic.com\
</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 - 256) / 2) + "px";
		element.style.left = ((myWidth - 400) / 2) + "px";
	};
}