var popUp;

function CloseWindow()
{
	self.close();
}

function openNewWindowRegister(){
	var w = 300;
	var h = 100;
	var winLeft = (screen.width - w) / 2;
	var winUp = (screen.height - h) / 2;
	var features = "width=" + w + ",height=" + h + ",status=no,left=" + winLeft + ",top=" + winUp;
	popUp = window.open("register2.htm", "_blank", features);
}