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 picWin (url,width,height) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','pics','menubar=no,toolbar=no,scrollbars=no,resizable=no,width=' + width + ',height=' + height + ',top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
  }

function menuWin (url,width,height) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','menus','menubar=no,toolbar=no,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 + '','pics','scrollbars=no,resizable=no,menubar=no,toolbar=yes,width=' + width + ',height=' + height + ',top=' + window_top + ',left=' + window_left);
	newWindow.window.focus()
  }

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

function newWin (url,width,height) {
	var window_top = (screen.height-400)*.3;
    var window_left = (screen.width-600)*.3;
	var newWindow = window.open(url + '','new','scrollbars=yes,resizable=yes,toolbar=yes,location=yes');
	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,height=550,width=600,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()
}
