function newWindow(windowName, windowTitle, windowHTMLSrc)
{ 
	var srcElement = document.getElementById(windowHTMLSrc);
	var openWindow = window.open("", windowName, "toolbar=no,scrollbars=yes,menubar=no");
	openWindow.document.write("<title>" + windowTitle + "</title>");

	openWindow.document.write("<link rel='stylesheet' href='http://www.bdm-ltd.co.uk/screenva.css' type='text/css' media='all' />");
	openWindow.document.write("<link rel='shortcut icon' href='http://www.bdm-ltd.co.uk/favicon.ico' type='image/x-icon' />");
	openWindow.document.write("<style>body {background: #fff; text-align:left; margin: auto; padding: 10px;}</style>");

	openWindow.document.write("<body>");
	openWindow.document.write(srcElement.value);
	openWindow.document.write("</body>");
	openWindow.document.write("</html>");

	openWindow.document.close();
	self.name="main";
}	
