var hPopup = ""
function popup(sURL, strAttributes)
{
	var hPopup = window.open(sURL, "popup", strAttributes);
	hPopup.focus();
}

function closeWin()
{
	window.close();
	window.opener.focus();
}


