OK i found a solution for this... you just call the following fuction
<script language="JavaScript">
/*
Reloads the parent window
*/
function parentReload() {
if (window.opener && !window.opener.closed) {
window.opener.location.href = 'http://www.site.com/index.php?page=basket&action=add&id=<?=$prod_id?>';
self.close();
}
}
</script>