// Close a popup window, redirect the main window to a given url, and return focus to the main window.
function closeWin(thislink){
	self.close(); 
	self.opener.location=thislink.href; 
	self.opener.focus();
	return false;
}
function closeNReload(){
	self.close(); 
	self.opener.location = self.opener.location;
	//self.opener.location.reload(); 
	self.opener.focus();
	return false;
}
