function doClose() {
 
  var links = document.getElementsByTagName("a");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match("closeWin")) {
      links[i].onclick = function() {
        window.close();
        return false;
      }
      }
	}
  }

function windowCloser ()
{
	
	if (document.getElementById("closeWindow")) 
		{
			var closeLink=document.getElementById("closeWindow");

			closeLink.onclick=function ()
				{
					window.opener.location=this.href;
					window.close();
					return false;
				}
	}
		
}

  if(document.getElementsByTagName && document.getElementById)
  {
  	window.onload= function () {
  		windowCloser ()
  		doClose();
  	}
  	
}
