// JavaScript Document

function OpenPopup(url, width, height) {
	//var width  = 700;
	//var height = 700;
	width += 18;
	height += 4;
	
	var left = (screen.width - width) / 2;
	var top  = (screen.height - height) / 2;

	var detail = window.open(url, "detail", "width="+width+", height="+height+", menubar=no, directories=no, scrollbars=yes, location=no, status=no,resizable=yes,left="+left+",top="+top);
	detail.focus();
	return false;
}

function CloseWindow() {
	window.close();
}

