// All code in this script is Copyright 2000, InfoServices Intl Inc, webmaster@infoservices.com
function newWindow(strMover,lft,dwn,mapgif) {

	subwayWindow = window.open('', '', 'height=550,width=600, left=0,top=0,screenX=0,screenY=0,toolbar=no, menubar=no,resizable=yes,scrollbars=1')
	subwayWindow.document.write('<HTML><HEAD><TITLE>')
	subwayWindow.document.write('CitiDex: Location finder')
	subwayWindow.document.write('<\/TITLE>')
	subwayWindow.document.write('<STYLE TYPE=\"TEXT\/CSS\">')
	subwayWindow.document.write(strMover)
	subwayWindow.document.write('</STYLE>')
	subwayWindow.document.write('<\/HEAD>')
	if (document.all){
		subwayWindow.document.write("<IMG STYLE=\"position:absolute;top=5;left=5;\" SRC=\"../../map/"+mapgif+"\">")
	}
	else{
		subwayWindow.document.write("<IMG STYLE=\"position:absolute;top=0;left=0;\" SRC=\"../../map/" +mapgif+"\">")
	}
	subwayWindow.document.write('<DIV ID="mover">')
	subwayWindow.document.write('<img src="../../pics/flashingball.gif">')
	subwayWindow.document.write('<\/DIV>')
	subwayWindow.document.write('<\/BODY><\/HTML>')
	subwayWindow.document.close()
	subwayWindow.focus()
	setTimeout("subwayWindow.scrollTo(" +lft+ "," +dwn+ ")",1000)
}
