No entiendo bien tu problema, pero para pasar una variable por post puedes usar javascript
:
En tu código tomas el valor del id, así:
Código:
<?php
mysql_select_db($database_db, $db);
$Result1 = mysql_query($insertSQL, $db) or die(mysql_error());
$id= mysql_insert_id();
?>
<body onload="document.getElementById('formu').submit();">
<form name="algo" id="formu" action="pagina-que-recibe-el-id.php" method="POST">
<input type="hidden" name="id" value="<?php echo $id=mysql_insert_id(); ?>">
</form>
</body>
Aver si te sirve... Saludos.