function popup(theURL,name,theSize)
{
	var settings = 'toolbars=0,location=0,directories=0,status=0,scrollbars=1,' + theSize;
	window.open(theURL,name,settings);
}

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