function form(send_to)
{
if (send_to == null)
	{
	theUrl="/form.php";
	}
else
	{
	theUrl="/form.php?send_to=" + send_to;
	}
reWin=window.open(theUrl,'POPUP','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=450,height=525,top=100,left=100')
}