
function OpenWin(url, w, h) {
	var x = 0;
	var y = 0;

	x = (screen.width - w) / 2;
	y = (screen.height - h) / 2;

	var features = "location=no,menubar=no,toolbar=no,status=no,width=" + w + ",height=" + h +",top=" + y + ",left=" + x;
	var NewWindow = window.open(url, '_dlcWindow', features);

	NewWindow.focus();
}

