
var popWin = null;
function popWindow1(service) {
	var width = 430;
	var height = 430;
	var filename = "popup_" + service + ".html";
	popWin = window.open(filename, "Window1", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,personalbar=no,scrollbars=yes,resizable=no,menubar=no");
}

var popWin = null;
function popWindow2(service) {
	var width = 500;
	var height = 440;
	var filename = "popup_" + service + ".html";
	popWin = window.open(filename, "Window2", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,personalbar=no,scrollbars=yes,resizable=no,menubar=no");
}

var popWin = null;
function popWindow3(service) {
	var width = 830;
	var height = 620;
	var filename = "thread_viewer/" + service + ".html";
	popWin = window.open(filename, "Window3", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,personalbar=no,scrollbars=yes,resizable=no,menubar=no");
}

var popWin = null;
function popWindow4(service) {
	var width = 1020;
	var height = 575;
	var filename = "thread_map/" + service + ".html";
	popWin = window.open(filename, "Window4", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,personalbar=no,scrollbars=yes,resizable=no,menubar=no");
}






