﻿// Browser type
var browser = "no_dhtml";
if (document.getElementById) {browser = "NS5"}
if (document.all) {browser = "MSIE"}
if (document.layers) {browser = "NS4"}
// Browser type, end

//Javascrit/DHTML test
if (browser == "no_dhtml") {
	document.location = 'sorry.html';
}

function printVersion (the_url) {
	window.open(the_url,'smallwindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=400')
}

