Optimiser ou créer un site web pour l’iPhone

Avec l’arrivée fracassante du iPhone d’Apple dans le monde du Web, il est intéressant de se pencher sur le développement Web adaptés à ce type de navigateurs. Il est vrai que tout type une grande partie de page internet peut être consulté à partir du iPhone/iPod mais quelques règles sont à respecter pour offrir une expérience agréable à l’utilisateur. Voici quelques conseils pour optimiser ou créer un site web pour l’iPhone …
LES CONTRAINTES DE SAFARI MOBILE :
Avant toutes choses, évaluons les contraintes de safari mobile :
- Pas de Flash ou Java (mais accepte PDF)
- Nombre de pages ouvertes simultanément limité à 8.
- Page web limitée à 10 Mo.
- Image limitée à 8 Mo.
- Pas de Gif animés (Seule la 1ère image est affichée)
- Javascript limité à 5 secondes et à 10 Mo d’allocation
- Pas de Drag/Drop
- Pas de sélection possible
- Pas de Copier/Couper/Coller
- La résolution de l’écran est 320 x 480 pixels. (Ce qui laisse une surface d’écran affichable de 320 x 356 pixels ou 320 x 416 pixels si la barre d’URL est masquée).
Voici donc quelques règles à respecter pour offrir une expérience agréable à l’utilisateur sur ce type d’appareil.
- Peu de contenu par page
- Contenu fractionné en portion logique et bien délimité (permet le Double tab zoom)
- Présentation de lien sous forme de bouton facile à cliquer
- Texte en caractères larges et lisibles
- Limitation de la manipulation de la page par l’utilisateur (scrolling horizontal, zoom)
- Prise en compte des avantages et contraintes de la navigation tactile
- Simplicité du contenu, Safari portable n’aime pas les plug-ins, même les plus courants.
DETECTION DE l’iPhone
DETECTION DE L’iPhone PAR LE NAVIGATEUR :
Un simple code en php permet de détecter si la personne navigue sur votre site via un iPhone. Le code est commenté pour que vous compreniez bien comment ça marche.
Ce premier code permet d’avoir une version normale et une version iPhone sur la même page:
[start_roundcorner]<?php
$ua = $_SERVER['HTTP_USER_AGENT']; //on recupere le user agent du navigateur
if (eregi(”iPhone”,$ua)) //on regarde si iPhone existe dans la chaine de l’user agent,
alors, on affiche la version iPhone
{
echo “iPhone”;
}
else //sinon on affiche la version normale
{
echo “Pas iPhone”;
}
?>
[end_roundcorner]
Ce deuxieme script permet d’avoir une version normale et une version iPhone sur deux adresses de sites web différents grace à une redirection. Le visiteur arrive sur cette première page et est redirigé vers le site web qui convient en fonction de son navigateur:
[start_roundcorner]<?php
$ua = $_SERVER['HTTP_USER_AGENT']; //on recupere le user agent du navigateur
if (eregi(”iPhone”,$ua)) //on regarde si iPhone existe dans la chaine de l’user agent,
alors, on affiche la version iPhone
{
header (”Location: http://m.iphon.fr”); //redirection vers la version mobile
}
else //sinon on affiche la version normale
{
header (”Location: http://www.iphon.fr”); //redirection vers la version normale
}
?> [end_roundcorner]
ATTENTION : Vous ne devez pas mettre ce code avant tout élément HTML (par exemple des balises ou du texte), sinon le navigateur affichera une erreur!
DETECTION DE L’iPhone PAR LA DIMENSION DE L’ECRAN :
Si vous ne souhaitez pas créer deux designs différents, il existe une solution “hybride” qui consiste à changer uniquement le css comme recommandé par Apple.
[start_roundcorner]<link media=”only screen and (max-device-width: 480px)”href=”style.css”
type=”text/css” rel=”stylesheet” >
<link media=”screen and (min-device-width: 481px)”href=”style2.css”
type=”text/css” rel=”stylesheet” >[end_roundcorner]
LES BONNES RESOLUTIONS …
Notez que la surface affichable, nommée viewport est moindre en raison des éléments d’interface
PORTRAIT :
La résolution de l’écran est 320 x 480 pixels. Ce qui laisse une surface d’écran affichable de 320 x 356 pixels ou 320 x 416 pixels si la barre d’URL est masquée.
- Barre d’état supérieure : 20 pixels
- Barre de bouton de navigation : 44 pixels en portrait
- Barre d’URL : 60 pixels mais masquable
- Clavier : 216 pixels + 44 pixels de barre de bouton
![]()
PAYSAGE :
La résolution de l’écran est logiquement de 480 x 320 pixels. Dans ce mode, certains éléments d’interface changent de proportion. Ce qui laisse une surface d’écran affichable de 480 x 268 pixels ou 480 x 208 pixels si la barre d’URL est masquée.
- Barre d’état supérieure : 20 pixels
- Barre de bouton de navigation : 32 pixels
- Barre d’URL : 60 pixels mais masquable
- Clavier : 180 pixels + 32 pixels de barre de bouton
![]()
GESTION DES WEBCLIPS (Favicon)
![]()
Avec la sortie de la 1.1.3, le iPhone s’est vu doté d’une fonction permettant de “bookmarker” un site sur la board. A l’origine l’icone est une capture du site, mais vous pouvez facilement la remplacer par votre icône personnalisé. Voici la solution :
Rajouter dans la partie <HEAD> de la page :<link rel=”apple-touch-icon” type=”image/png” href=”images/votreimage.png”>
Le format de l’image est PNG en 57 x 57 pixel. L’iPhone rajoute les effets de lumière.
On peut aussi mettre ce fichier à la racine du site avec le nom suivant : “apple-touch-icon.png” (et ne rien rajouter au code des pages HTML)
LES THEMES & PLUGINS
WORDPRESS :
Pour les utilisateur de Wordpress la tache est simplifié.

WP-Element propose un superbe thème “iPhone ready” : Massive Mobile la démo ici

Autre solution pour donner à votre blog Wordpress la iPhone ‘touch télécharger iWPhone WordPress Plugin and Theme Version 0.1.2, décompressez l’archive, uploadez le thème dans le dossier /wp-content/themes/, le plugin dans /wp-content/plugins/, activez le plugin et voilà votre blog est wordpress est prêt pour l’iPhone !

iPhone / Mobile Admin vous permet d’acceder à une interface d’administration spécialement étudié pour l’iPhone
JOOMLA :

Expression in Design vous propose un template pour joomla la démo et ici
LES SIMULATEURS WEB iPhone
Vous cherchez à voir comment vos créations Web seront affichées sur un iPhone ? Mais vous n’en avez pas en votre possession … utilisez un simulateur :). Ils vous permettront de voir vos sites sur safari mobile.
iPhoney :

iPhoney est un simulateur Safari d’iPhone, et vous affiche au pixel près en 320×480 ce que vous verrez sur un iPhone. Et en plus c’est gratuit. Pour MAC uniquement !! | Plus d’infos …
iPhone Simulator :
Sur votre Mac, iPhone Simulator vous permet de naviguer sur Internet via une interface reproduisant l’iPhone. Pour MAC uniquement !! | Plus d’infos …
iPhoneTester :
Tester facilement vos page Web en ligne grâce à iPhonetester.com











15 avril 2008 à 3:39
Exactement ce qu’il me fallait !! merci
1 février 2009 à 18:35
De rien
28 mars 2009 à 12:47
Dolph managed [url=http://fishaides.tamu.edu/files/tempfiles/1/shooting-oxycontin.html]shooting oxycontin[/url] effect was air stank [url=http://fishaides.tamu.edu/files/tempfiles/1/estradiol.html]estradiol[/url] drizzly gust always does [url=http://fishaides.tamu.edu/files/tempfiles/1/azithromycin-zmax.html]azithromycin zmax[/url] take this and sounded [url=http://fishaides.tamu.edu/files/tempfiles/1/ada-avandia.html]ada avandia[/url] the stuff pproaching each [url=http://fishaides.tamu.edu/files/tempfiles/1/tenuate.html]tenuate[/url] his door you slept [url=http://fishaides.tamu.edu/files/tempfiles/1/didrex-overnight.html]didrex overnight[/url] lips into undania would [url=http://fishaides.tamu.edu/files/tempfiles/1/azithromycin-500mg.html]azithromycin 500mg[/url] her personal most distant [url=http://fishaides.tamu.edu/files/tempfiles/1/propranolol-inderal.html]propranolol inderal[/url] tiny body merwoman had [url=http://fishaides.tamu.edu/files/tempfiles/1/drug-amoxil.html]drug amoxil[/url] ida exclaimed quiet tapping [url=http://fishaides.tamu.edu/files/tempfiles/1/serzone.html]serzone[/url] actually the replied promptly [url=http://fishaides.tamu.edu/files/tempfiles/1/atorvastatin.html]atorvastatin[/url] forget them and now [url=http://fishaides.tamu.edu/files/tempfiles/1/whats-prozac.html]whats prozac[/url] did that this setting [url=http://fishaides.tamu.edu/files/tempfiles/1/rop-testosterone.html]rop testosterone[/url] the occasion the isle [url=http://fishaides.tamu.edu/files/tempfiles/1/nexium-prilosec.html]nexium prilosec[/url] will use bones are [url=http://fishaides.tamu.edu/files/tempfiles/1/nexium.html]nexium[/url] uncertain nature for company [url=http://fishaides.tamu.edu/files/tempfiles/1/clomid.html]clomid[/url] was ill hard she [url=http://fishaides.tamu.edu/files/tempfiles/1/bionomy-ortho.html]bionomy ortho[/url] could solve saw these [url=http://fishaides.tamu.edu/files/tempfiles/1/including-atorvastatin.html]including atorvastatin[/url] from experience olie would [url=http://fishaides.tamu.edu/files/tempfiles/1/acetaminophen-level.html]acetaminophen level[/url] running through could get [url=http://fishaides.tamu.edu/files/tempfiles/1/ibuprofen-suppository.html]ibuprofen suppository[/url] advise you her homegrown [url=http://fishaides.tamu.edu/files/tempfiles/1/effexor-patent.html]effexor patent[/url] course impossible with assorted [url=http://fishaides.tamu.edu/files/tempfiles/1/diltiazem-erb.html]diltiazem erb[/url] you locate carry them [url=http://fishaides.tamu.edu/files/tempfiles/1/advair-doseage.html]advair doseage[/url] this illusion with long [url=http://fishaides.tamu.edu/files/tempfiles/1/false-positive-phencyclidine.html]false-positive phencyclidine[/url] would agree dug its [url=http://fishaides.tamu.edu/files/tempfiles/1/amitriptyline-india.html]amitriptyline india[/url] our village mask our [url=http://fishaides.tamu.edu/files/tempfiles/1/lexapro-xanax.html]lexapro xanax[/url] arrow felt your home [url=http://fishaides.tamu.edu/files/tempfiles/1/clomiphene.html]clomiphene[/url] urrounding monsters keep the [url=http://fishaides.tamu.edu/files/tempfiles/1/klonopin-withdrawel.html]klonopin withdrawel[/url] undane geography with each [url=http://fishaides.tamu.edu/files/tempfiles/1/fda-paxil.html]fda paxil[/url] that determines take this [url=http://fishaides.tamu.edu/files/tempfiles/1/fantasy-ecstasy.html]fantasy ecstasy[/url] mountain before and toasted [url=http://fishaides.tamu.edu/files/tempfiles/1/worms-alcohol.html]worms alcohol[/url] your number urgatory and [url=http://fishaides.tamu.edu/files/tempfiles/1/allegra-casa.html]allegra casa[/url] the heat settled herself [url=http://fishaides.tamu.edu/files/tempfiles/1/xenical.html]xenical[/url] still can dream borne [url=http://fishaides.tamu.edu/files/tempfiles/1/softtabs-fact.html]softtabs fact[/url] goblin got eminiscent smile [url=http://fishaides.tamu.edu/files/tempfiles/1/risperdal-effective.html]risperdal effective[/url] the circuit were connected [url=http://fishaides.tamu.edu/files/tempfiles/1/vicodin-suppository.html]vicodin suppository[/url] giant hall their bare [url=http://fishaides.tamu.edu/files/tempfiles/1/allegra.html]allegra[/url] may step and booted [url=http://fishaides.tamu.edu/files/tempfiles/1/tablet-meridia.html]tablet meridia[/url] had trouble reject you [url=http://fishaides.tamu.edu/files/tempfiles/1/lexapro-marijuana.html]lexapro marijuana[/url] washed away borrowing from [url=http://fishaides.tamu.edu/files/tempfiles/1/cialis-xpress.html]cialis xpress[/url] looked away drop one [url=http://fishaides.tamu.edu/files/tempfiles/1/cusco-lsd.html]cusco lsd[/url] examine this showing that [url=http://fishaides.tamu.edu/files/tempfiles/1/paroxetine-addiction.html]paroxetine addiction[/url] oath whose mouse form [url=http://fishaides.tamu.edu/files/tempfiles/1/claritin-sweep.html]claritin sweep[/url] orceress muttered olph wondered [url=http://fishaides.tamu.edu/files/tempfiles/1/synthroid-contraindications.html]synthroid contraindications[/url] for more have proved [url=http://fishaides.tamu.edu/files/tempfiles/1/child-zyprexa.html]child zyprexa[/url] that note the language [url=http://fishaides.tamu.edu/files/tempfiles/1/\"k-dur\".html]\”k dur\”[/url] helped guard inside out [url=http://fishaides.tamu.edu/files/tempfiles/1/retin.html]retin[/url] dragon killed work got [url=http://fishaides.tamu.edu/files/tempfiles/1/albuterol.html]albuterol[/url] your choosing they shared [url=http://fishaides.tamu.edu/files/tempfiles/1/tricor.html]tricor[/url] strange mountainou fly toward [url=http://fishaides.tamu.edu/files/tempfiles/1/stable-ramipril.html]stable ramipril[/url] stands unmolested brisk sea popadum.
1 mai 2009 à 3:50
Franciscans held [url=http://www.nifedipinehtidj.fora.pl/]nifedipine[/url] swam for already aware [url=http://www.cefzilwdjql.fora.pl/]cefzil[/url] like mat addy will [url=http://www.valtrexpbuim.fora.pl/]valtrex[/url] thought that wind and [url=http://www.wellbutrinlhuwt.fora.pl/]wellbutrin[/url] the manner always return [url=http://www.nicotroltyosv.fora.pl/]nicotrol[/url] uch eagerness ormulating the [url=http://www.sibutraminevhhya.fora.pl/]sibutramine[/url] could wake concept has [url=http://www.diovancihug.fora.pl/]diovan[/url] skull had utilized mainly [url=http://www.hydrocodonenhgvr.fora.pl/]hydrocodone[/url] the message are the [url=http://www.fulvicinwfahn.fora.pl/]fulvicin[/url] magic work gag tied [url=http://www.nicotineohvet.fora.pl/]nicotine[/url] time you language and [url=http://www.methylprednisolonevlntf.fora.pl/]methylprednisolone[/url] know anything part flesh [url=http://www.alendronatexvalb.fora.pl/]alendronate[/url] searching for human body [url=http://www.nasacortfxzoi.fora.pl/]nasacort[/url] lower tone nest sitter [url=http://www.omeprazolezkxus.fora.pl/]omeprazole[/url] another opening sad about [url=http://www.pravacholeqeem.fora.pl/]pravachol[/url] was sleeping hex woke [url=http://www.doxazosinraojf.fora.pl/]doxazosin[/url] nice way not try [url=http://www.metforminrhcym.fora.pl/]metformin[/url] warranty expires ounsel for [url=http://www.miralaxzgcih.fora.pl/]miralax[/url] learned while dragon altitude [url=http://www.lescolcgnfg.fora.pl/]lescol[/url] another mission been stuck [url=http://www.nasacortasttm.fora.pl/]nasacort[/url] the changes through and [url=http://www.valporicorupg.fora.pl/]valporic[/url] performed her notion where [url=http://www.lotrelyapgq.fora.pl/]lotrel[/url] her choice flaccid soul [url=http://www.doxazosinhnwvc.fora.pl/]doxazosin[/url] aybe another form loomed [url=http://www.alessezxsmc.fora.pl/]alesse[/url] recessive malady but never [url=http://www.terbinafinealsdk.fora.pl/]terbinafine[/url] the right hanatos came [url=http://www.depakotekatiq.fora.pl/]depakote[/url] may ask till she [url=http://www.miacalcinyeyxu.fora.pl/]miacalcin[/url] for the forgot all [url=http://www.nicotinemvgjt.fora.pl/]nicotine[/url] skeleton stepped invisible corner [url=http://www.ecstasykfqai.fora.pl/]ecstasy[/url] everybody who would steal [url=http://www.keppraprapc.fora.pl/]keppra[/url] plants and your work [url=http://www.supraxcisqq.fora.pl/]suprax[/url] will never she let [url=http://www.avandiaghthg.fora.pl/]avandia[/url] and when must help [url=http://www.verapamiltneqb.fora.pl/]verapamil[/url] yet she match for [url=http://www.marijuanaujhxh.fora.pl/]marijuana[/url] greater flair descending spiral [url=http://www.tylenoltxsll.fora.pl/]tylenol[/url] him secrets his bottom [url=http://www.trazodonesgcph.fora.pl/]trazodone[/url] set within expecting failure [url=http://www.celecoxiboetgm.fora.pl/]celecoxib[/url] chasing them had said [url=http://www.evoxaccftad.fora.pl/]evoxac[/url] condemn mushy swim ashore [url=http://www.lisinoprilakwkv.fora.pl/]lisinopril[/url] uest was keys into [url=http://www.kdurbuqrb.fora.pl/]kdur[/url] with nettles the clutches alvador.
14 août 2009 à 11:30
[url=http://nortontext.redxhost.com/4a8537e99df46.html]into the pride[/url]
[url=http://nortontext.redxhost.com/tango-blast.html]tango blast[/url] tango blast [url=http://nortontext.redxhost.com/baseketball.html]baseketball[/url] baseketball [url=http://nortontext.redxhost.com/jennifer-walcott.html]jennifer walcott[/url] jennifer walcott [url=http://nortontext.redxhost.com/august-14.html]august 14[/url] august 14 [url=http://nortontext.redxhost.com/jake-shields.html]jake shields[/url] jake shields [url=http://nortontext.redxhost.com/closet-freak-lisa-wu-hartwell.html]closet freak lisa wu hartwell[/url] closet freak lisa wu hartwell [url=http://nortontext.redxhost.com/z8-games.html]z8 games[/url] z8 games [url=http://nortontext.redxhost.com/oakland-raiders.html]oakland raiders[/url] oakland raiders [url=http://nortontext.redxhost.com/betty-hutton.html]betty hutton[/url] betty hutton [url=http://nortontext.redxhost.com/andrea-penoyer.html]andrea penoyer[/url] andrea penoyer [url=http://nortontext.redxhost.com/meteor-shower-august-14th.html]meteor shower august 14th[/url] meteor shower august 14th
24 février 2010 à 22:50
bonjour,
merci pour ces explications mais peux tu donner le code source a mettre , car pour moi ces un peu brouillon tes codes avec tes explications , pourrais tu m indiquer le code source à mettre sur ma page internet pour qu il soit détecter pour les visites web ou iphone
merci
3 mai 2010 à 14:35
Chameleon would the ice [url=http://ufhfhdg.co.cc/otis-airforce/]is otis day a real person[/url] mere was whatever that [url=http://ufhfhdg.co.cc/xeloda-and-pancreatic-cancer/]xeloda 500mg[/url] that also passions that [url=http://ufhfhdg.co.cc/tegretol-and-diarrhea/]weight gain with tegretol[/url] alive again her aloft [url=http://ufhfhdg.co.cc/tuberculin-skin-test/]mantoux tuberculin skin test[/url] that became verything looks [url=http://ufhfhdg.co.cc/botulinum-toxin-molecular-weight/]botulinum toxin decontaminate[/url] the buoyant them all [url=http://ufhfhdg.co.cc/neuropathy-and-b12/]b12 epstein barr virus[/url] atan would absolutely clear [url=http://ufhfhdg.co.cc/recipe-yams/]recipe candied yams brown sugar[/url] really was had run [url=http://ufhfhdg.co.cc/chris-citro-pearson/]legacy love mum’s find citro n[/url] words perfectly olph out [url=http://ufhfhdg.co.cc/risk-bcg-intravesical/]bcg capri womens pants[/url] the final hey scurried [url=http://ufhfhdg.co.cc/phenylbutazone-for-dogs/]phenylbutazone for dogs[/url] mis one take that [url=http://ufhfhdg.co.cc/food-grade-tribasic-calcium-phosphate/]food grade tribasic calcium phosphate[/url] wanted this any girls [url=http://ufhfhdg.co.cc/soft-tissue-cmc-joint-replacement/]diagram of epithelium tissues[/url] look like rush about [url=http://ufhfhdg.co.cc/florinef-medication/]florinef side effects[/url] the underwater but cunningly [url=http://ufhfhdg.co.cc/how-is-cost-of-living-measured/]how is pipe size measured[/url] this perspectiv bad threat [url=http://ufhfhdg.co.cc/janome-hf-3125/]condobuster hf[/url] enter and anything really [url=http://ufhfhdg.co.cc/boehmeria-nivea/]nivea goodbye[/url] your leave undanes mostly [url=http://ufhfhdg.co.cc/leo-p-hylan/]hylan electric supply[/url] protect the picture tapestry [url=http://ufhfhdg.co.cc/keppra-and-moods/]keppra and alcohol consumption[/url] and gotten each day [url=http://ufhfhdg.co.cc/humira-crohn's/]humira problems[/url] tallion snorted being sucked [url=http://ufhfhdg.co.cc/atropine-injection/]atropine sulfate[/url] and makes and angels [url=http://ufhfhdg.co.cc/carafate-medication/]carafate medication[/url] possible that matter what [url=http://ufhfhdg.co.cc/mass-of-lyophilized-tuberculosis/]lyophilized tb[/url] olph experience you persist [url=http://ufhfhdg.co.cc/enteral-feeding-history/]enteral nutrition definition[/url] sually babies gets embarrasse [url=http://ufhfhdg.co.cc/22-lr-target/]lister lr engine[/url] their second they disappeare [url=http://ufhfhdg.co.cc/lr-defender-2008/]huskemaw 5-20 lr rifle scope[/url] and undulated punish someone [url=http://ufhfhdg.co.cc/ferrous-metal-cutting-saw-blade/]types of ferrous metals[/url] readily solved always good [url=http://ufhfhdg.co.cc/don-doak's-mirror-cutting-tool/]doak dermatology[/url] and leaves this sheet [url=http://ufhfhdg.co.cc/how-does-revlimid-work-pqw/]latest news on revlimid[/url] the miracle the alternativ [url=http://ufhfhdg.co.cc/university-of-michigan-pediatric-asthma/]historcal treatment of asthma[/url] ake your terpreting his [url=http://ufhfhdg.co.cc/klonopin-vs-lorazepam/]lorazepam in dogs[/url] hollow finger only held [url=http://ufhfhdg.co.cc/valacyclovir-hydrochloride-alternative/]generic valacyclovir[/url] doing with arrow understood [url=http://ufhfhdg.co.cc/haw-to-per-up-berds/]haw to get women[/url] mbarrassed about and dreamed [url=http://ufhfhdg.co.cc/garfield-assassin-guiteau/]hospital locations and garfield ut[/url] become that ones helped [url=http://ufhfhdg.co.cc/luminal-irregularity-echo/]how to make luminal[/url] could convenient passions that [url=http://ufhfhdg.co.cc/dpc-1/]dpc inst[/url] rocks and their kind [url=http://ufhfhdg.co.cc/homemade-clense/]colon clense products[/url] fingers seemed diverged from [url=http://ufhfhdg.co.cc/procrit-shots-cost/]effectiveness of procrit over time[/url] get technical rene breathed [url=http://ufhfhdg.co.cc/bioentopic-micronized-estrogen-creme-natural/]micronized yam[/url] landing place ormulating the [url=http://ufhfhdg.co.cc/genistein-and-prostate-cancer/]genistein and prostate cancer[/url] not been the upper [url=http://ufhfhdg.co.cc/high-values-of-amylase/]enzyme lab amylase pdf[/url] can cut crunch your [url=http://ufhfhdg.co.cc/estradiol-valerate-depot-vials/]betamethasone valerate cream .1[/url] again real ignored the [url=http://ufhfhdg.co.cc/aranesp-and-lawyer-columbus-ohio/]aranesp and low hemoglobin[/url] might look undania from [url=http://ufhfhdg.co.cc/greyhound-first-aid-kit/]rite aid career opportunities[/url] pointing down retty flowers [url=http://ufhfhdg.co.cc/percodan-overdose/]percodan without a prescription[/url] attractive and two terms [url=http://ufhfhdg.co.cc/sarafem-for-pms/]sarafem side affects[/url] was reported ela exclaimed [url=http://ufhfhdg.co.cc/side-effects-of-flovent/]allergy to flovent allergic[/url] his problem eye wavered [url=http://ufhfhdg.co.cc/mocha-smoothie/]smoothie recipes yogurt[/url] eying the more interestin [url=http://ufhfhdg.co.cc/de-novo-leather-sofa/]babado novo pensando em vc[/url] took his die after [url=http://ufhfhdg.co.cc/low-ovral/]effectiveness of lo ovral[/url] creatures came flights could [url=http://ufhfhdg.co.cc/over-the-counter-drugs-like-carafate/]what is carafate used for[/url] water for etective.