function showbig(x) {
	var newWindow = window.open("showimage.htm?" + x , "photo", "scrollbars=no,titlebar=no,status=no,height=10,width=10" );
	newWindow.window.focus()
}	

function pressWin (url,width,height) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','press','menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height + ',top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
  }

function openWin (url,width,height) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','win','scrollbars=yes,toolbar=yes,menubar=yes,resizable=no,width=' + width + ',height=' + height + ',top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
  }

function openWin2 (url,width,height) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','win2','scrollbars=yes,toolbar=yes,menubar=yes,resizable=no,width=' + width + ',height=' + height + ',top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
  }

function picWin (url,width,height) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','pics','scrollbars=no,resizable=no,width=' + width + ',height=' + height + ',top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
  }

function newWin (url) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + 'menubar=1,resizable=1,top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
  }

function vtWin (url) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','vtours','scrollbars=yes,resizable=yes,top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
}

function wideWin (url,height) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','photos','scrollbars=yes,resizable=yes,width=825,height=' + height + ',top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
}
