function open_win(url_add, titlepage, width, height)
{
	window.open(url_add,titlepage,"width=" + width + ",height=" + height + ",menubar=no,resizable=no,status=no,location=no,toolbar=no,scrollbars=yes");
}
function refreshParent() {
window.opener.location.href = window.opener.location.href;

if (window.opener.progressWindow)
	
{
window.opener.progressWindow.close()
}
window.close();
}