

function open1(url) {
	var width = 480;
	var height = 300;
	var new1 = window.open(url, "new1", "width=" + width + ",height=" +height + ",top=100,left=200,resizable=no,menubar=no");
	new1.focus();
}

function open2(url) {
	var width = 480;
	var height = 380;
	var new1 = window.open(url, "new1", "width=" + width + ",height=" +height + ",top=100,left=200,resizable=no,menubar=no");
	new1.focus();
}
function open3(url) {
	var width = 520;
	var height = 300;
	var new1 = window.open(url, "new1", "width=" + width + ",height=" +height + ",top=100,left=200,resizable=no,menubar=no");
	new1.focus();
}

function open4(url) {
	var width = 480;
	var height = 440;
	var new1 = window.open(url, "new1", "width=" + width + ",height=" +height + ",top=100,left=200,resizable=no,menubar=no");
	new1.focus();
}

function popup(url, width, height) {
	var new1 = window.open(url, "new1", "width=" + width + ",height=" +height + ",top=100,left=200,resizable=no,menubar=no");
	new1.focus();
}