// JavaScript Document
function openWin(url) {
	newwindow = window.open(url, "TEST", "height=600, width=500, menubar=0, toolbar=0, scrollbars=0, location=no, statusbar=0");
	newwindow.focus();
	return false;
}

function closeWin() {
	close();
	}

function closeWin2(URL) {
   
   window.opener.location.href = URL;
   self.close();

          }

        