function MyPopUpWinTravel() {
var iMyWidth;
var iMyHeight;
//half the screen width minus half the new window width.
iMyWidth = (window.screen.width/2) - (400);
//half the screen height minus half the new window height (plus title and status bars).
iMyHeight = (window.screen.height/2) - (370);
//Open the window.
var win2 = window.open("http://www.electrosketch.org/travel/","Window2","status=no,height=800,width=800,resizable=yes,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
win2.focus();
}
