	function showSVG(file) {
		var w = open ('', 'MapSVG', 'width=1000,height=600,titlebar=0');
		var line = '<embed width="1000" height="600" src="'+file+'" type="image/svg-xml" pluginspage="http://www.adobe.com/svg/viewer/install/"/>';
		w.document.open();
		w.document.write('<html><body style="margin:0pt;padding:0pt;">'+line+'</body></html>');
		w.document.close();
		w.moveTo(0,0);
		w.focus();
	}
	function showJPG(file) {
		var w = open ('', 'MapJPG', 'width=800,height=600,titlebar=0');
		var line = '<img src="'+file+'"/>';
		w.document.open();
		w.document.write('<html><body style="margin:0pt;padding:0pt;">'+line+'</body></html>');
		w.document.close();
		w.moveTo(0,0);
		w.focus();
	}
