function popitup(url)
{
newwindow=window.open(url,'name','height=600,width=750');
if (window.focus) {newwindow.focus()}
return false;
}



function to_old_win(url)
{
	opener.location.href = url;
}
