Dentists' Coupons


Form data names and variables $FName = 'Trellix Mailier Request New'; $FEmail = 'admin@orionrepair.com,adminatorionrepair@wavecable.com'; $FSpamEmail = ''; $FWebsiteAfter = 'http://www.orionrepair.com/thank_you.htm'; $FCopyToSender = 1; $FExporting = 1; $FDMode = 1; $FMesFromT = 1; $FMesName = 0; $FMesFrom = 1; $FMesSubjectT = 1; $FMesSubject = 2; $FCopyToSender = 1; $FExporting = 1; $FieldsNo = 14; $FieldName[0] = 'First Name:'; $FieldType[0] = 1; $FieldTypeExt[0] = ''; $FieldCols[0] = 35; $FieldRows[0] = 0; $FieldS[0] = ''; $FieldRequired[0] = 0; $FieldV[0] = 0; $FieldName[1] = 'Last Name:'; $FieldType[1] = 1; $FieldTypeExt[1] = ''; $FieldCols[1] = 35; $FieldRows[1] = 0; $FieldS[1] = ''; $FieldRequired[1] = 0; $FieldV[1] = 0; $FieldName[2] = 'Company:'; $FieldType[2] = 1; $FieldTypeExt[2] = ''; $FieldCols[2] = 35; $FieldRows[2] = 0; $FieldS[2] = ''; $FieldRequired[2] = 0; $FieldV[2] = 0; $FieldName[3] = 'Address Line 1:'; $FieldType[3] = 1; $FieldTypeExt[3] = ''; $FieldCols[3] = 35; $FieldRows[3] = 0; $FieldS[3] = ''; $FieldRequired[3] = 0; $FieldV[3] = 0; $FieldName[4] = 'Address Line 2:'; $FieldType[4] = 1; $FieldTypeExt[4] = ''; $FieldCols[4] = 35; $FieldRows[4] = 0; $FieldS[4] = ''; $FieldRequired[4] = 0; $FieldV[4] = 0; $FieldName[5] = 'City:'; $FieldType[5] = 1; $FieldTypeExt[5] = ''; $FieldCols[5] = 35; $FieldRows[5] = 0; $FieldS[5] = ''; $FieldRequired[5] = 0; $FieldV[5] = 0; $FieldName[6] = 'State:'; $FieldType[6] = 1; $FieldTypeExt[6] = ''; $FieldCols[6] = 35; $FieldRows[6] = 0; $FieldS[6] = ''; $FieldRequired[6] = 0; $FieldV[6] = 0; $FieldName[7] = 'Country:'; $FieldType[7] = 1; $FieldTypeExt[7] = ''; $FieldCols[7] = 35; $FieldRows[7] = 0; $FieldS[7] = ''; $FieldRequired[7] = 0; $FieldV[7] = 0; $FieldName[8] = 'Zip Code:'; $FieldType[8] = 1; $FieldTypeExt[8] = ''; $FieldCols[8] = 35; $FieldRows[8] = 0; $FieldS[8] = ''; $FieldRequired[8] = 0; $FieldV[8] = 0; $FieldName[9] = 'Phone:'; $FieldType[9] = 1; $FieldTypeExt[9] = ''; $FieldCols[9] = 35; $FieldRows[9] = 0; $FieldS[9] = ''; $FieldRequired[9] = 0; $FieldV[9] = 0; $FieldName[10] = 'Email:'; $FieldType[10] = 1; $FieldTypeExt[10] = ''; $FieldCols[10] = 35; $FieldRows[10] = 0; $FieldS[10] = ''; $FieldRequired[10] = 0; $FieldV[10] = 0; $FieldName[11] = 'Where did you first hear about us?'; $FieldType[11] = 3; $FieldTypeExt[11] = ' Entrepreneur Magazine | Small Business Opportunities Magazine | Home Business Magazine | Google Search | Yahoo Search | Microsoft Bing Search | Facebook | Referral'; $FieldCols[11] = 0; $FieldRows[11] = 0; $FieldS[11] = ''; $FieldRequired[11] = 0; $FieldV[11] = 0; $FieldName[12] = 'If not listed, where did you hear about us first?'; $FieldType[12] = 1; $FieldTypeExt[12] = ''; $FieldCols[12] = 35; $FieldRows[12] = 0; $FieldS[12] = ''; $FieldRequired[12] = 0; $FieldV[12] = 0; $FieldName[13] = 'Comments:'; $FieldType[13] = 2; $FieldTypeExt[13] = ''; $FieldCols[13] = 30; $FieldRows[13] = 10; $FieldS[13] = ''; $FieldRequired[13] = 0; $FieldV[13] = 0; // Error Messages $HtmlErrorStart = ''; $HtmlErrorEnd = ''; $msgErrorTooLongs = ' is too long! (Max '; $msgErrorTooLonge = ' characters)'; $msgErrorTooShorts = ' is too short! (Min '; $msgErrorTooShorte = ' characters)'; //$msgErrorFieldEmpty = ' is empty! ( This field is required )'; $msgErrorFieldEmpty = ' is required.'; $msgError = 'Error : '; $msgErrorBadFields = 'Some fields are empty or invalid.'; // Needed functions // -------------------------------------------------------------- function checkminsize($input, $min) // Check a string size { if (strlen($input)<$min) return 0; else return 1; } // -------------------------------------------------------------- function checkmaxsize($input, $max) // Check a string size { if (strlen($input)>$max) return 0; else return 1; } // -------------------------------------------------------------- function CheckTextSize($text, $min, $max, $errno, $errfieldname) { global $mmsg, $verifyok, $HtmlErrorStart, $HtmlErrorEnd, $msgErrorTooLongs, $msgErrorTooLonge, $msgErrorTooShorts, $msgErrorTooShorte, $msgErrorFieldEmpty, $mmsgt, $msgError, $msgErrorBadFields; if (!checkminsize($text,$min)) { $mmsg[$errno] = $HtmlErrorStart . $errfieldname . $msgErrorTooShorts . $min . $msgErrorTooShorte . $HtmlErrorEnd; $verifyok = 0; } if (!checkmaxsize($text,$max)) { $mmsg[$errno] = $HtmlErrorStart . $errfieldname . $msgErrorTooLongs . $max . $msgErrorTooLonge . $HtmlErrorEnd; $verifyok = 0; } if ($min>0) if (!checkminsize($text,1)) { $mmsg[$errno] = $HtmlErrorStart . $errfieldname . $msgErrorFieldEmpty . $HtmlErrorEnd; $verifyok = 0; } if ($verifyok == 0 ) { $mmsg[0] = $msgError . $msgErrorBadFields; $mmsgt = 1; } return $verifyok; } // -------------------------------------------------------------- function SecurityCheckCode($Turing) { global $ImageCode; if ( !isset( $_SESSION['turing_string'] ) ) { $ImageCode = ''; return 1; } else if ( strtoupper($_SESSION['turing_string']) == strtoupper($Turing) ) { $ImageCode = 'ok'; return 1; } else { $ImageCode = 'wrong'; return 0; } } // -------------------------------------------------------------- function getip() // Returns the real Ip in most cases { if (isSet($_SERVER)) { if (isSet($_SERVER["HTTP_X_FORWARDED_FOR"])) { $realip = $_SERVER["HTTP_X_FORWARDED_FOR"]; } elseif (isSet($_SERVER["HTTP_CLIENT_IP"])) { $realip = $_SERVER["HTTP_CLIENT_IP"]; } else { $realip = $_SERVER["REMOTE_ADDR"]; } } else { if ( getenv( 'HTTP_X_FORWARDED_FOR' ) ) { $realip = getenv( 'HTTP_X_FORWARDED_FOR' ); } elseif ( getenv( 'HTTP_CLIENT_IP' ) ) { $realip = getenv( 'HTTP_CLIENT_IP' ); } else { $realip = getenv( 'REMOTE_ADDR' ); } } return $realip; } // Processing form // -------------------------------------------------------------- session_start(); $RealIp = getip(); if ( $_SESSION['FReferer'] == '' ) { $R = @$_SERVER['HTTP_REFERER']; if ( R != '' ) $_SESSION['FReferer'] = $R; } $Referer = $_SESSION['FReferer']; // ------------------------------------------------------------------------------------- function CheckEmail($email,$minsize,$maxsize,$err,$fieldname) { global $mmsg, $mmsgt, $HtmlErrorStart, $HtmlErrorEnd, $verifyok; // check if the email string is not empty, has at least 4 chars, is smaller than 64 CheckTextSize($email, $minsize, $maxsize, $err, $fieldname); if ( ($minsize == 0 ) AND ( $email == '') ) return 0; // check if is has a valid email format xxx@yyy.domainname if ( ! (valid_email($email)) ) {$mmsg[$err] = $HtmlErrorStart . 'Email does not appear to be valid' . $HtmlErrorEnd; $mmsgt = 1; $verifyok = 0; return 1;} // check if the email string contains more than 1 email if ( substr_count($FEmail, '@') > 1 ) {$mmsg[$err] = $HtmlErrorStart . 'Only one email is allowed' . $HtmlErrorEnd; $mmsgt = 1; $verifyok = 0;}; } function ValidateEmail($email,$err,$fieldname) { global $mmsg, $mmsgt, $verifyok; // check if is has a valid email format xxx@yyy.domainname if ( ! (valid_email($email)) ) {$mmsg[$err] = $fieldname . ' does not appear to be a valid email address'; $mmsgt = 1; $verifyok = 0; return 1;} } // ------------------------------------------------------------------------------------- function checkuint($input) { if (is_numeric($input)) //Be aware 3e000 is ok .. this function supports e-notation if ($input>=0) return 1; return 0; } // ------------------------------------------------------------------------------------- function ValidateNum($num, $errno, $errfieldname) { global $mmsg, $verifyok; if (!checkuint($num)) { $mmsg[$errno] = $errfieldname . ' must contain only digits'; $verifyok = 0; return 0; } } // ------------------------------------------------------------------------------------- function ValidateText($text, $errno, $errfieldname) { global $mmsg, $verifyok; if (ereg('[^A-Za-z \,\.\(\)\'\"]', $text)) { $mmsg[$errno] = $errfieldname . ' must contain only letters'; $verifyok = 0; return 0; } } // ------------------------------------------------------------------------------------- function valid_email($email) { // First, we check that there's one @ symbol, and that the lengths are right if (!ereg("^[^@]{1,64}@[^@]{1,255}$", $email)) { // Email invalid because wrong number of characters in one section, or wrong number of @ symbols. return false; } // Split it into sections to make life easier $email_array = explode("@", $email); $local_array = explode(".", $email_array[0]); for ($i = 0; $i < sizeof($local_array); $i++) { if (!ereg("^(([A-Za-z0-9!#$%&'*+/=?^_`{|}~-][A-Za-z0-9!#$%&'*+/=?^_`{|}~\.-]{0,63})|(\"[^(\\|\")]{0,62}\"))$", $local_array[$i])) { return false; } } if (!ereg("^\[?[0-9\.]+\]?$", $email_array[1])) { // Check if domain is IP. If not, it should be valid domain name $domain_array = explode(".", $email_array[1]); if (sizeof($domain_array) < 2) { return false; // Not enough parts to domain } for ($i = 0; $i < sizeof($domain_array); $i++) { if (!ereg("^(([A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9])|([A-Za-z0-9]+))$", $domain_array[$i])) { return false; } } } return true; } // Get form settings and fields for ($i=0;$i<$FieldsNo;$i++) { if ( $FieldType[$i] ==3 ) { // checkbox $FieldData[$i] = ''; $Options = explode('|', $FieldTypeExt[$i]); $OptionsNo = count($Options); for ($j=0;$j<$OptionsNo;$j++) { $fd = trim($_POST['FieldData' . $i . '-' . $j]); $FieldData[$i] .= $fd; if ( ($j<($OptionsNo-1)) and ( $fd !='' ) ) $FieldData[$i] .= ', '; } } else $FieldData[$i] = trim($_POST['FieldData' . $i]); } if ( $HTTP_POST_VARS ) { // Basic verifications of the form submitted, check if the version is ok // and the fields number corsesponds if ($FieldsNo <> count($FieldData)) { echo 'Error: The number of submitted data fields ( ' . count($FieldData) . ' ) does not corespond to the form ( ' . $FName . ' wich has ' . $FieldsNo . ' fields ).'; return 3; } $Hida2 = trim($_POST['hida2']); if ($Hida2 != '') { echo 'Error: Spam submission detected ).'; return 4; } $mmsgt = 0; $verifyok = 1; $SpamScore = 0; $DupFields = 0; $Spam = 0; $Hida2 = trim($_POST['hida2']); if ($Hida2 != '') { $mmsg[0] = $HtmlErrorStart . 'Error: Your submission is spam.' . $HtmlErrorEnd; $mmsgt = 1; $Spam = 1; } $SpamWord = array( 'http', 'URL', 'cialis', 'viagra', 'xxx', 'valium'); for ($i=0;$i<$FieldsNo;$i++) if ( $FieldType[$i] != 6 ) { if ($FieldRequired[$i] == 1){ CheckTextSize($FieldData[$i], 1, 10000, ($i+1), $FieldName[$i]); //echo $FieldData[$i]; } if($FieldType[$i]==1){ if ($FieldV[$i] == 1) ValidateEmail($FieldData[$i], ($i+1), $FieldName[$i]); if ($FieldV[$i] == 2) ValidateNum($FieldData[$i], ($i+1), $FieldName[$i]); if ($FieldV[$i] == 3) ValidateText($FieldData[$i], ($i+1), $FieldName[$i]); } for ($j=0;$j 10) { $mmsg[0] = $HtmlErrorStart . 'Error: Your submission is spam.' . $HtmlErrorEnd; $mmsgt = 1; $Spam = 2; } // Check if the Turing Code is correct $Turing = trim($_POST['Turing']); if ( ! ( SecurityCheckCode($Turing)) ) { $mmsg[0] = $HtmlErrorStart . 'Error: {$_SESSION['turing_string']} {$Turing} The Code that you entered is not the correct code from the Verification Image! Cookies must be enabled.' . $HtmlErrorEnd; $mmsgt = 1; $Spam = 4; } // check for new lines in inapropiate places // check for new lines in the From name and email if ($FMesFromT ==2) if (preg_match("/(%0A|%0D|\\n+|\\r+)/i",$FieldData[$FMesName] . $FieldData[$FMesFrom])) $FMesFromT = 1; // check for new lines in the Subject if ($FMesSubjectT ==2) if (preg_match("/(%0A|%0D|\\n+|\\r+)/i",$FieldData[$FMesSubject])) $FMesSubjectT = 1; if ( ($mmsgt !=1) or ($Spam > 0 ) ) { $mime_boundary=md5(time()); // Prepare email $headers = ""; if ($Spam == 0) { if ($FMesFromT ==1) $fromaddress = "EmailMeForm "; elseif ($FMesFromT ==2) { $CustomerName = $FieldData[$FMesName]; $CustomerEmail = $FieldData[$FMesFrom]; $fromaddress = "$CustomerName "; } $headers .= "From: $fromaddress\r\n"; $headers .= "Reply-To: $FieldData[$FMesName] <$FieldData[$FMesFrom]>\r\n"; } else $headers .= "From: EmailMeForm \r\n"; $subject = 'Feedback via the ' . $FName; if ($FMesSubjectT ==2) $subject = $FName . ': ' . $FieldData[$FMesSubject]; if ($Spam > 0) $subject = $FName . ' Spam submission detected'; $headers .= "Message-ID: <".time()."-@emailmeform.com>\r\n"; $headers .= "X-Mailer: PHP v".phpversion()."\r\n"; $headers .= "Content-Type: multipart/mixed; boundary=\"".$mime_boundary. '"' . "\r\n\r\n"; $body = "--".$mime_boundary. "\r\n"; $body .= "Content-Type: text/plain; charset=\"utf-8\"\r\n"; $body .= "Content-Transfer-Encoding: 8bit\r\n\r\n"; if ($Spam > 0) { $body .= " The following submission has been detected as spam.\r\n"; $body .= ' Spam type: '; switch ($Spam) { case 1 : $body .= "Bad hidden field\r\n\r\n"; break; case 2 : $body .= "Bad words detected\r\n\r\n"; break; case 3 : $body .= "Same data was filled in more than half fields\r\n\r\n"; break; case 4 : $body .= "Bad or invalid captcha code\r\n\r\n"; break; case 5 : $body .= "Unknown Ip\r\n\r\n"; break; case 6 : $body .= "Injection attack\r\n\r\n"; break; case 7 : $body .= "Injection attack\r\n\r\n"; break; } } for ($i=0;$i<$FieldsNo;$i++) if ($FieldType[$i]<6) $body .= $FieldName[$i] . ': ' . $FieldData[$i] . "\r\n"; $body .= "---------------------------------------------------------------------\r\n"; $body .= 'Visitor Ip: ' . $RealIp . "\r\n"; if ($FExporting == 1) { $body .= "*** Text Database Entry ***\r\n"; for ($i=0;$i<($FieldsNo-1);$i++) $body .= '"' . $FieldName[$i] . '",'; $body .= '"' . $FieldName[$FieldsNo-1] . '"' . "\r\n"; for ($i=0;$i<($FieldsNo-1);$i++) $body .= '"' . $FieldData[$i] . '",'; $body .= '"' . $FieldData[$FieldsNo-1] . '"' . "\r\n"; } // Adding attachments for($i=0; $i<$FieldsNo; $i++) if ($FieldType[$i] == 6) { $fd = 'FieldData' . $i; if (is_uploaded_file($_FILES["$fd"][tmp_name])) { $handle=fopen($_FILES["$fd"][tmp_name], 'rb'); $f_contents=fread($handle, filesize($_FILES["$fd"][tmp_name])); $f_contents=chunk_split(base64_encode($f_contents)); $f_type=filetype($_FILES["$fd"][tmp_name]); fclose($handle); # Attachment $filename = $_FILES["$fd"][name]; $body .= "--".$mime_boundary."\r\n"; $body .= 'Content-Type: ' . $_FILES["$fd"][type] . '; name="' . $filename . '"' . "\r\n"; $body .= "Content-Transfer-Encoding: base64\r\n"; $body .= "Content-Description: $FieldName[$i]\r\n"; $body .= 'Content-Disposition: attachment; filename="' . $filename . '"'."\r\n\r\n"; $body .= $f_contents."\r\n\r\n"; } } # Finished $body .= "--".$mime_boundary."--\r\n\r\n"; // finish with two eol's for better security. see Injection. if ($Spam == 0) { // We try to send the email with verification code if (mail("$FEmail", $subject, $body, $headers) ) if ( $SaveEmails == 1) { // The mail has been sent succesfuly, update the email table $query="UPDATE email SET Status='delivered', DateDelivered = NOW() WHERE EmailId='$EmailId'"; mysql_query($query) or die(mysql_error()); } } else if ($FSpamEmail != '') @mail("$FSpamEmail", $subject, $body, $headers); // If Sending a copy to visitor is checked and the field from where to get the visitor email // address is selected we send a copy to the visitor if ( ($FCopyToSender == 1) && ($FMesFromT ==2) AND ($Spam == 0) ) { $headers = "From: $FFirstName $FLastName \r\n"; $headers = "Reply-to: $FFirstName $FLastName <$FEmail>\r\n"; $subject = 'We have received your email'; if ($FMesSubjectT ==2) $subject .= ': ' . $FieldData[$FMesSubject]; $body = 'Hello ' . $FieldData[$FMesName] . ",\r\n \r\n"; $body .= "We have received your form submission, thank you!\r\n \r\n"; $body .= "Below is the data submitted:\r\n \r\n"; for ($i=0;$i<$FieldsNo;$i++) if ( $FieldType[$i] <6 ) $body .= $FieldName[$i] . ' : ' . $FieldData[$i] . "\r\n"; $body .= "\r\nBest regards,\r\n"; $body .= "$FFirstName $FLastName\r\n"; // We try to send the email with verification code @mail("$FieldData[$FMesName] <$FieldData[$FMesFrom]>", $subject, $body, $headers); } if ($Spam == 0 ) { // Redirect visitor if form was on site, or display an message if form was in window switch ($FDMode) { case 0 : case 1 : case 2 : $loc = 'Location: ' . $FWebsiteAfter; header($loc); exit; case 3: echo 'We received your message, thank you for contacting us.'; } return 0; } } } // preparing font formating $ft = '
Dentists' Coupons
Coupon A
|
$75 Off Of All Handpiece Repair Invoices over $1,000!
|
|
Coupon B
|
$50 off any five Handpiece Repairs together!
|
|
Coupon C
|
$25 off of any single Handpiece Repair!
(one per year)
|
|
Coupon D
|
Buy Four cases of Prophys get an extra case for Free!
|
|
Coupon E
|
Buy two cases of Prophys get the third case 50% off!
|
|
Coupon F
|
Buy 6 Handpieces Get 1 FREE!
|
|
Coupon G
|
Let us pick up all of your handpieces and give them all a holiday cleaning and shining,
(includes changing out all applicable orings and gaskets)
$42 per handpiece
|
Temporary Price Reduction-While Supplies Last!
Special Offer!
Dental Handpiece Maintenance System/Lubricating Device
(Automatic Purge System)
Limited Quantity Now Available
Includes Free Shipping to the continental USA, and low shipping costs worldwide.
We received a Container Shipment, and are passing the savings on to you.
This is the same model without the Kavo label, from the same factory, that is
Sold for $3,190 in Schein.
Our Regular Price $1,190
Limited Time Special Price $887
Product Description:
Correct maintenance performed at regular intervals is a key to high performance and longer life of your handpieces.
Orion Dental Sales, Training & Repair provides an easy to use Handpiece Cleaning and Lubrication system to facilitate handpiece maintenance in your office.
Automatically cleans and lubricates up to 3 handpieces at one time with a touch of a button. Both high speed and low speed handpieces are processed thoroughly in a single cycle.
The H6000 automatic handpiece maintenance system is the perfect solution for fast and simple maintenance of all brands of high and low speed handpieces, plus air motors.
H6000 is designed to process all handpieces (3 handpieces) in less than 1 minute for preparation of sterilization.
The automatic rotation function operates each handpiece during the H6000 cycle, and guarantees that each handpiece is correctly cleaned and lubricated.
At the end of each cycle, compressed air flushes out any remaining residue solution and cleans both the coolant water and air channels.
Features:
Automatically lubricates up to 2 high speed handpieces and 1 low speed air motor at one time with touch of a button
Economically efficient and time saving
A fail safe maintenance solution for your office
Filtered air used to rotate handpieces for safety
Care for most handpieces and all handpieces brands
Disposable mist filtration system, inexpensive replacement
Solution level indicator
Detachable door for easy cleaning of unit
Easy refill of solution tank
Inexpensive unit that cleans your handpieces automatically
Working Procedures:
This machine can clean and oil handpieces accurately and easily every time.
It is very easy to operate.
Three dental handpieces can be oiled and cleaned at the same time.
Swing pinion can effectively clean and oil the dental handpiece from different angles.
Having completed the procedure of the cleaning and oiling,the remained oil can be cleared by pressing the air key.
Different handpieces can be oiled by choosing the short mode, the long mode, and the extra-long mode.
Operating Instructions:
Put the handpieces into the machine.
Close the door.
Choose the time, with three time modes (Short, Long, Extra-long).
Push the “Start” button.
Specification:
The use of a dental handpiece flush unit can increase the life of your handpiece turbine by up to 40 percent.
Rated Voltage: AC120V-230V 50HZ/60Hz
Air Pressure: 0.35~O.60Mpa (3.5~6.0kgf/cm2)(50~85psi)
Can Volume: 350mL
Overall Dimension: 280mm×360mm×275mm
Net Weigh: 6.8kg(no including with packaging)
A simple operation, everyone can operate it.
Built with a high quality, commercial filter.
Filling the tank is simple, with a viewable level for fluid.
Mode
|
Time of cleaning and oiling
|
Time of cleaning
|
Short Mode
|
Almost 35 Seconds
|
Almost 60 Seconds
|
Long Mode
|
Almost 45 Seconds
|
Almost 60 Seconds
|
Long Mode
|
Almost 50 Seconds
|
Almost 90 Seconds
|
Packaging Details:
Unit Type: piece
Package Weight: 10.0kg (22.05lb.)
Package Size: 50cm x 50cm x 80cm (19.69in x 19.69in x 31.50in)
We welcome business from all countries of the world.
|