// JavaScript Document
<!--Begin
function popupWin() {
text =  "<html>\n<head>\n<title>\nNovapoint 16.10</title>\n</head>\n<body>\n";
text += "<center>\n<br>\n";
text += "<h2 style='font-size: 11pt; font-family: Verdana, Arial, Helvetica, sans-serif; margin-bottom: 2pt;'>\Novapoint 16.10 is released - For users by users</h2>\n";
text += "<p style='font-size: 10pt; font-family: Verdana, Arial, Helvetica, sans-serif;'>\nIn a long tradition of providing localised software solutions for planners, designers, contractors, municipal engineers, architects and landscape architects, ViaNova Systems releases Novapoint 16.10 in the Nordics, The United Kingdom, Ireland, Holland, Belgium, Luxemburg, The Baltics and Spain. Novapoint 16.10 includes both stand-alone and CAD integrated solutions running on AutoCAD, Autodesk Map and other Autodesk platforms. Novapoint 16.10 also includes two new Novapoint modules, Novapoint Waterways and Novapoint Reshaping. Contact your local dealer.</p>\n";
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 500); 		// delay 0.5 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=450,height=180');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 20000);	// delay 20 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
// End --->
