title: $title
name: $name
email: $email
"; echo "address: $address
keywords: $keywords -->"; } ?> CSPS:: Symposium 2006 Abstract Submission

 

Thank you for your submission.

back

'; $showForm = false; } else { echo "
$msg
"; $showForm = true; } } if (true == $showForm) { ?>

CSPS 9th Annual International Symposium on Pharmaceutical Sciences

 

Current Scientific Regulatory Challenges in Drug Development & Safety

 

Call for Abstracts for Poster Presentations - CLOSED

Abstracts for poster presentations are being accepted for the 9th Annual Symposium of the Canadian Society for Pharmaceutical Sciences, to be held at the Crowne Plaza, Ottawa, Ontario, Canada, May 24 - 27, (Wednesday, Thursday, Friday, Saturday) 2006. Abstracts in all areas of pharmacy and pharmaceutical sciences will be accepted.

The deadline for submission is Thursday, February 16th, and authors will be informed of acceptance by Friday, March 3, 2006.

Posters will be displayed on Thursday, May 25 OR Friday, May 26. Authors must be present to discuss their work during all break periods.

All submitted posters will be reviewed by a scientific review committee. Posters presented should contain original work. However, in exceptional cases work presented elsewhere within the last 12 months may be considered. Such work must be highly original and deemed of high importance by the abstract review committee to merit a second presentation. Work that has been presented elsewhere must be clearly acknowledged with the name of the meeting, the date of the original presentation, and referenced to the publication if abstract has been published.

Abstracts must be submitted in English, must contain an adequate body of data, with the Purpose, Methods, Results and Conclusion headings, and be free of typographical errors. The length of the abstract must not exceed 250 words, with the title in Sentence case, bold, and the name of the presenter italicized. Do not include tables or illustrations in the abstract. For text use Times, 11-point. Use the Symbol font for symbols and Greek characters. Be sure your abstract includes the title of your abstract, and all author names and addresses.

Detailed Submission Guidelines can be found on the CSPS website.

To submit an abstract, please complete and submit this form, and send the abstract under separate cover to CSPS, by email, as an attachment in Microsoft Word format (.doc). The attachment file name should be the last (family) name of the corresponding author of the abstract, and the subject line of your email should include your name and the complete abstract title.

Faxed submissions will not be accepted.

Posters will be displayed on Velcro panels, and presenters must mount their work using Velcro dots or pushpins. (presenters must bring their own pins or Velcro dots) The boards are 4' high by 8'' across.

 

Posterboard

 

(As with all scientific meetings the attendees are expected to pay for their registration and all associated costs to attend the meeting. If you are not able to cover all the costs to attend the meeting then we will not be able to accept your abstract and it will not be included in the list of presentations at the meeting. CSPS does not send out letters of invitations to attendees, nor can we provide financial help or assist with visas.)


 

Abstract Submission Form

After entering information into this form, click on the Submit button at the bottom of this page. On separate lines, indicate:

(1) poster title

(2) corresponding author name

(3) corresponding author email address

">

(4) corresponding author address

(5) three keywords

(6) abstract (250 words maximum)

Send the abstract via separate email, in Microsoft Word Format (.doc) to CSPS. Include Purpose, Methods, Results and Conclusion headings. Please proof-read and spell-check abstract before submitting, as it will be printed exactly as it appears when submitted. Following the conference, all presented poster abstracts will be published in the Journal of Pharmacy & Pharmaceutical Sciences. (Email each abstract separately. Do not attach multiple abstracts to your email.)



 

 

 

"; } if (empty($name)) { $errMsg .= "Author Name must be filled out.
"; } if (empty($email)) { $errMsg .= "Email Address must be filled out.
"; } elseif (!preg_match('/^[-a-z0-9_\.]+@[-a-z0-9_\.]+\.\w\w+$/i', $email)) { $errMsg .= "'$email' is not a valid email address.
"; $email = ''; } if (empty($address)) { $errMsg .= "Author Address must be filled out.
"; } if (empty($keywords)) { $errMsg .= "Keywords must be filled out.
"; } return $errMsg; } function sendEmail($title, $name, $email, $address, $keywords) { $varString = "title - $title\n"; $varString .= "name - $name\n"; $varString .= "email - $email\n"; $varString .= "address - $address\n"; $varString .= "keywords - $keywords\n"; /* phpmailer setup */ $mail = new PHPMailer(); $mail->IsSMTP(); // telling the class to use SMTP $mail->Host = "localhost"; // SMTP server $mail->From = "$email"; $mail->FromName = "$name"; $mail->AddAddress("csps@cspscanada.org"); //$mail->AddAddress("craig@lonsbury.com"); $mail->Subject = "abstract"; $mail->Body = "$varString"; $mail->WordWrap = 50; $mail->Send(); } ?>