//copyright (c)2003 D.J. Ardore, Inc.
//all rights reserved
function myTour(r) {
 var topPos, leftPos
 leftPos = ((screen.width * .5) - 300);
 topPos = ((screen.height * .5) - 200);
 myURL = 'http://www.ardore.com/vTour/' + r + '/tour.asp?r=' + r
newWindow = window.open(myURL, 'tourWin', 'width=500,height=450,left='+leftPos + ',top=' + topPos + '');
 newWindow.focus()
 }

