"; die; include_once("defaultfooter.inc.php"); echo input_button("ForSale","Return to For Sale Page",HTTP_HOST . "/forsale/","_self",STD_BUTTON,RETURN_FORMLIB_OUTPUT); die; } // On the sale page a block of code can be excluded if bracketed by the following two function calls. It will only be displayed if: // show=true is set in ini file // show=review is set in ini_file and file is on remote server and a GET variable equal to $boat is set. // E.g. http://www.kp44.org/forsale/seagnome/seagnome.php?seagnome function start_show_block() { // Exclude from Manual ob_start(); } function end_show_block() { // Exclude from Manual if ( setGET("public") ) { ob_end_clean(); } elseif ( setGET("review") ) { ob_end_flush(); } elseif ( LOCALSERVER || SHOWBOAT == "1" ) { ob_end_flush(); } elseif ( SHOWBOAT == "review" && setGET( BOAT ) ) { ob_end_flush(); } else { ob_end_clean(); } } function contact_block() { // Exclude from Manual global $phone, $phone2, $mobile, $mobile2, $owner, $emailname, $emailhost; echo "
" . BREOL; echo $owner . BREOL; echo mail_link($emailname,$emailhost) . BREOL; if ( $phone ) echo "Tel: $phone" . BREOL; if ( $phone2 ) echo "Tel 2: $phone2" . BREOL; if ( $mobile ) echo "Mobile: $mobile" . BREOL; if ( $mobile2 ) echo "Mobile 2: $mobile2" . BREOL; echo "
" . BREOL; } ?>