so thinking upon this a little more, .. if the rest of your shopping cart depends on that get variable, .. then just set it with session_id() at the top of the page:
PHP Code:
<?
if( !session_id() ){
session_start();
}
$_GET['sessid']=session_id();
?>
then you wouldn't have to modify any of the other code?