Help importing SWF / FLA contact form into FLA file.

I've been trying to import, embed, or load a contact form into a fla flash website (i have the fla and files) however i cant seem to get it to work.
The form is separate file, I have the fla source file for it as well.
I'm using Actionscript 3. I would like to have the form dynamical load into my existing project/page - http://www.photorexit.com/site/contact/contact
Here is the contact form page - http://www.photorexit.com/site/contact/contact_page.html
any suggestions?
-Jason

The contact_page.fla page is a template contact file I purchased on the net.
I spent most of the morning going through the files and I cant seem to pin point why the contact_page is trying to load contact.swf from my local computer.
I assume it has something to do with the "contact_page" ContactPage.as file and the Monitor.as file.
I have to admit, I'm in over my head...
-Jason
ContactPage.as
package as3{
    import flash.display.Sprite;
    import flash.display.MovieClip;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.events.MouseEvent;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.net.navigateToURL;
    import flash.utils.Timer;
    import flash.geom.ColorTransform;
    import caurina.transitions.Tweener;
    import caurina.transitions.properties.ColorShortcuts;
    ColorShortcuts.init();
    public class ContactPage extends Sprite {
        public var itemsPath:String='';
        private var xmlCOLORS_DFT:String = 'colors.xml';
        private var colorStatus:Boolean=false;
        public var color_dfr:Object=new Object();
        private var xmMAIN_XML_PATH:String = 'cgal.xml';
        private var mainXMLStatus:Boolean=false;
        public var xmlDate:Array = [];
        private var mainTitle:String='';
        private var bg:BG;
        private var monitor:Monitor;
        public var footerMenu:FooterMenu;
        private var b_colorOut:uint;
        private var b_colorOver:uint;
        public var container:MovieClip;
        public var closeF:Function;
        public var monitorHeight:int=0;
        public var monitorWidth:int=0;
        public var email_for_contact_form:String;
        public function ContactPage() {
            addEventListener(Event.ENTER_FRAME, aplLoading);
            addEventListener(Event.REMOVED_FROM_STAGE, remove);
        private function remove(e:Event):void {
            trace(this);
            removeEventListener(Event.ENTER_FRAME, aplLoading);
            removeEventListener(Event.ENTER_FRAME, loading);
            stage.removeEventListener(Event.RESIZE, appResizeHandler);
        private function aplLoading(e:Event):void {
            var bytesTotal = stage.loaderInfo.bytesTotal;
            var bytesLoaded = stage.loaderInfo.bytesLoaded;
            var percentLoaded : Number = Math.floor(Math.round( bytesLoaded/bytesTotal ));
            if (percentLoaded==1) {
                if (parent!=stage) {
                    closeF= Object(parent).goBG;
                    container = Object(parent).div;
                    xmlCOLORS_DFT =  Object(parent).xmlCOLORS_DFT;
                    xmMAIN_XML_PATH = Object(parent).xmMAIN_XML_PATH;
                    itemsPath=Object(parent).itemsPath;
                init();
                removeEventListener(Event.ENTER_FRAME, aplLoading);
        public function init() {
            stage.scaleMode = StageScaleMode.NO_SCALE;
            stage.align = StageAlign.TOP_LEFT;
            stage.addEventListener(Event.RESIZE, appResizeHandler);
            footerMenu = new FooterMenu();
            monitor = new Monitor();
            bg = new BG();
            bg.alpha=0;
            addChild(bg);
            appResizeHandler();
            var mainLoader:URLLoader = new URLLoader();
            mainLoader.addEventListener( Event.COMPLETE, onMainXMLLoad );
            mainLoader.addEventListener(IOErrorEvent.IO_ERROR, errorTrace);
            mainLoader.load( new URLRequest(xmMAIN_XML_PATH) );
            var colorLoader:URLLoader = new URLLoader();
            colorLoader.addEventListener( Event.COMPLETE, onColorXMLLoad );
            colorLoader.addEventListener(IOErrorEvent.IO_ERROR, errorTrace);
            colorLoader.load( new URLRequest(xmlCOLORS_DFT) );
        public function colorCgange(obj:Object, color:uint):void {
            var colorTransform:ColorTransform = new ColorTransform();
            colorTransform.color = color;
            obj.transform.colorTransform = colorTransform;
        private function onColorXMLLoad( event:Event ):void {
            try {
                var mainData:XML = new XML( event.target.data );
                for (var i:int; i<mainData.elements().length(); i++) {
                    var attribCol:Object = {};
                    for each (var attribute:XML in mainData.elements()[i].attributes()) {
                        attribCol[attribute.name().toString()] = attribute.valueOf().toString();
                    color_dfr[mainData.elements()[i].name().toString()] = attribCol;
                colorStatus = true;
                addEventListener(Event.ENTER_FRAME, loading);
            } catch (e:Error) {
                errorTrace("Couldn't load the Color XML file.<br/>"+e.message);
                trace( 'Color XML Loading Error: ' + e.message );
                return;
        private function onMainXMLLoad( event:Event ):void {
            try {
                var mainData:XML = new XML( event.target.data );
                mainTitle = [email protected]();
                if (Boolean([email protected]())) {
                    monitorWidth = parseInt([email protected]());
                if (Boolean([email protected]())) {
                    monitorHeight = parseInt([email protected]());
                if (Boolean(mainData.@email_for_contact_form.toString())) {
                    email_for_contact_form = mainData.@email_for_contact_form.toString();
                } else {
                    errorTrace("There is no e-mail address.");
                    trace( "There is no e-mail address.");
                    return;
                for (var i:int=0; i<mainData.elements().length(); i++) {
                    xmlDate[i] = {title:mainData.elements()[i][email protected](), cont:mainData.elements()[i]};
                mainXMLStatus = true;
                addEventListener(Event.ENTER_FRAME, loading);
            } catch (e:Error) {
                errorTrace("Couldn't load the Main XML file.<br/>"+e.message);
                trace( 'Main XML Loading Error: ' + e.message );
                return;
        private function loading(e:Event):void {
            if (mainXMLStatus && colorStatus) {
                removeEventListener(Event.ENTER_FRAME, loading);
                if (Boolean(color_dfr.background.color.length)) {
                    Tweener.addTween(bg,{_color:color_dfr.background.color, alpha:1, time:1});
                } else {
                    bg.alpha=0;
                monitor.alpha = 0;
                footerMenu.alpha= 0;
                addChild(monitor);
                colorCgange(monitor.txt, color_dfr.mainTitle.textColor);
                monitor.txt.text = mainTitle;
                monitor.init();
                monitor.addChild(footerMenu);
                b_colorOver = uint(color_dfr.buttons.mouseOver);
                b_colorOut = uint(color_dfr.buttons.mouseOut);
                Tweener.addTween(monitor,{alpha:1,time:1});
                Tweener.addTween(footerMenu,{alpha:1,time:1, delay:.7});
        function buttonRoll(e:MouseEvent):void {
            var button = e.currentTarget;
            switch (e.type) {
                case "mouseOut" :
                    colorCgange(button.img,b_colorOut);
                    break;
                case "mouseOver" :
                    colorCgange(button.img,b_colorOver);
                    break;
        public function errorTrace(txt:String):void {
            var err_txt:TextField= new TextField();
            err_txt.width = 300;
            err_txt.autoSize = TextFieldAutoSize.LEFT;
            err_txt.wordWrap = true;
            err_txt.htmlText = '<p align = "center"><font color="#ff0000" size="24">' + txt+ '</font></p>';
            err_txt.x = (stage.stageWidth-err_txt.width)/2;
            err_txt.y = (stage.stageHeight-err_txt.height)/2;
            addChild(err_txt);
        private function appResizeHandler(e:Event=null):void {
            if (container) {
                bg.width = container.width;
                bg.height = container.height;
            } else if(stage) {
                bg.width = stage.stageWidth;
                bg.height = stage.stageHeight;
Monitor.as
package as3{
    import flash.display.MovieClip;
    import flash.display.StageAlign;
    import flash.display.Bitmap;
    import flash.display.BitmapData;
    import flash.display.Loader;
    import flash.display.LoaderInfo;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.events.FocusEvent;
    import flash.events.ProgressEvent;
    import flash.events.IOErrorEvent;
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.net.URLVariables;
    import flash.net.URLLoaderDataFormat;
    import flash.net.URLRequestMethod;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import flash.geom.ColorTransform;
    import caurina.transitions.Tweener;
    public class Monitor extends MovieClip {
        private var itemsPath:String;
        private var mainObj:Object;
        private var b_colorOver:uint;
        private var b_colorOut:uint;
        private var mainTitle:uint;
        private var itemTitle:uint;
        private var itemDescription:uint;
        private var xmlData:Array;
        private var container:MovieClip;
        private var mail:String;
        private var loader:URLLoader = new URLLoader();
        private var req:URLRequest = new URLRequest("contactPro.php");
        private var variables:URLVariables = new URLVariables();
        private var senderRpl:String="No";
        private var form_field_arr:Array=['txt_name', 'txt_phone','txt_email', 'txt_message'];
        private var form_def_cont_arr:Array=[];
        private var form_err_arr:Array=["Username Required","","Missing Field/Invalid E-mail", "Message Required"];
        public function Monitor() {
            b_close.visible=false;
            addEventListener(Event.ADDED_TO_STAGE, toStage);
        private function toStage(e:Event):void {
            mainObj = parent;
            container = mainObj.container;
            if (container) {
                itemsPath = mainObj.itemsPath;
                req = new URLRequest(itemsPath+"/contactPro.php");
                b_close.alpha=0;
                b_close.visible=true;
                Tweener.addTween(b_close, {alpha:1, time:1});
                mainObj.footerMenu.visible=false;
            xmlData = mainObj.xmlDate;
            mail = mainObj.email_for_contact_form;
            b_colorOver = uint(mainObj.color_dfr.buttons.mouseOver);
            b_colorOut = uint(mainObj.color_dfr.buttons.mouseOut);
            mainTitle = uint(mainObj.color_dfr.mainTitle.textColor);
            itemTitle= uint(mainObj.color_dfr.itemTitle.textColor);
            itemDescription= uint(mainObj.color_dfr.itemDescription.textColor);
            var contactFtextColor:uint = uint(mainObj.color_dfr.inoutTextField.textColor);
            var contactFbgColor:uint = uint(mainObj.color_dfr.inoutTextField.bgColor);
            var contactFbrColor:uint = uint(mainObj.color_dfr.inoutTextField.borderColor);
            ///mainObj.colorCgange(b_close.img, b_colorOut);
            mainObj.colorCgange(contactForm.mc_buttons.b_clear.img, b_colorOut);
            mainObj.colorCgange(contactForm.mc_buttons.b_submit.img, b_colorOut);
            b_close.buttonMode=true;
            b_close.addEventListener(MouseEvent.CLICK, fClose);
            b_close.addEventListener(MouseEvent.MOUSE_OVER,buttonRoll);
            b_close.addEventListener(MouseEvent.MOUSE_OUT,buttonRoll);
            contactForm.mc_buttons.b_clear.addEventListener(MouseEvent.MOUSE_OVER,buttonRoll);
            contactForm.mc_buttons.b_clear.addEventListener(MouseEvent.MOUSE_OUT,buttonRoll);
            contactForm.mc_buttons.b_submit.addEventListener(MouseEvent.MOUSE_OVER,buttonRoll);
            contactForm.mc_buttons.b_submit.addEventListener(MouseEvent.MOUSE_OUT,buttonRoll);
            item_1.autoSize = TextFieldAutoSize.LEFT;
            item_1.wordWrap=true;
            item_1.mouseWheelEnabled=false;
            item_2.autoSize = TextFieldAutoSize.LEFT;
            item_2.wordWrap=true;
            item_2.mouseWheelEnabled=false;
            item_3.autoSize = TextFieldAutoSize.LEFT;
            item_3.wordWrap=true;
            item_3.mouseWheelEnabled=false;
            textFieldFormat(item_1, itemDescription);
            textFieldFormat(item_2, itemDescription);
            textFieldFormat(item_3, itemDescription);
            textFieldFormat(title_1, itemTitle);
            textFieldFormat(title_2, itemTitle);
            textFieldFormat(contactForm.txError, itemTitle);
            contactForm.txt_name.borderColor = contactFbrColor;
            contactForm.txt_name.backgroundColor = contactFbgColor;
            contactForm.txt_phone.borderColor = contactFbrColor;
            contactForm.txt_phone.backgroundColor = contactFbgColor;
            contactForm.txt_email.borderColor = contactFbrColor;
            contactForm.txt_email.backgroundColor = contactFbgColor;
            contactForm.txt_message.borderColor = contactFbrColor;
            contactForm.txt_message.backgroundColor = contactFbgColor;
            textFieldFormat(contactForm.txt_name, contactFtextColor);
            textFieldFormat(contactForm.txt_phone, contactFtextColor);
            textFieldFormat(contactForm.txt_email, contactFtextColor);
            textFieldFormat(contactForm.txt_message, contactFtextColor);
            contactForm.txt_message.wordWrap=true;
            appResizeHandler();
            stage.addEventListener(Event.RESIZE, appResizeHandler);
        private function textFieldFormat(tField:TextField, color:uint):void {
            var format:TextFormat = new TextFormat();
            format.color = color;
            tField.defaultTextFormat = format;
        function buttonRoll(e:MouseEvent):void {
            var button = e.currentTarget;
            switch (e.type) {
                case "mouseOut" :
                    if(button.name == "b_close"){
                        button.img.transform.colorTransform = new ColorTransform();
                    }else{
                        mainObj.colorCgange(button.img, b_colorOut);
                    break;
                case "mouseOver" :
                    mainObj.colorCgange(button.img, b_colorOver);
                    break;
        private function fClose(e:MouseEvent):void {
            mainObj.closeF()
        public function init():void {
            var i:int=0;
            title_1.text = xmlData[0].title;
            title_2.text = xmlData[1].title;
            for (i=0; i<xmlData[0].cont.elements().length(); i++) {
                this['item_'+(i+1)].htmlText = xmlData[0].cont.elements()[i];
            for (i=0; i<xmlData[1].cont.elements().length(); i++) {
                form_def_cont_arr[i]=xmlData[1].cont.elements()[i];
            loader.dataFormat = URLLoaderDataFormat.VARIABLES;
            req.method = URLRequestMethod.POST;
            contactForm.mc_buttons.b_clear.buttonMode = true;
            contactForm.mc_buttons.b_submit.buttonMode = true;
            contactForm.mc_buttons.b_clear.addEventListener(MouseEvent.MOUSE_DOWN, text_field_clear);
            contactForm.mc_buttons.b_submit.addEventListener(MouseEvent.MOUSE_DOWN, sendForm);
            for (i=0; i<form_field_arr.length; i++) {
                contactForm[form_field_arr[i]].tabIndex = i;
                contactForm[form_field_arr[i]].text= form_def_cont_arr[i] ;
                contactForm[form_field_arr[i]].addEventListener(FocusEvent.FOCUS_IN, onFocus);
                contactForm[form_field_arr[i]].addEventListener(FocusEvent.FOCUS_OUT, outFocus);
                contactForm[form_field_arr[i]].addEventListener(Event.CHANGE, txErrorCheck);
            appResizeHandler();
        private function txErrorCheck(event:Event):void {
            if (contactForm.txError.text.length>0) {
                contactForm.txError.text = "";
        private function onFocus(event:FocusEvent):void {
            //trace('dd')
            for (var i:int=0; i<form_field_arr.length; i++) {
                if (event.target.name==form_field_arr[i]) {
                    var text_field_index = i;
            if (contactForm[form_field_arr[text_field_index]].text==form_def_cont_arr[text_field_index]) {
                contactForm[form_field_arr[text_field_index]].text='';
        private function outFocus(event:FocusEvent):void {
            for (var i:int=0; i<form_field_arr.length; i++) {
                if (event.target.name==form_field_arr[i]) {
                    var text_field_index = i;
            if (contactForm[form_field_arr[text_field_index]].text=='') {
                contactForm[form_field_arr[text_field_index]].text=form_def_cont_arr[text_field_index];
        private function text_field_clear(event:Event=null):void {
            for (var i:int=0; i<form_field_arr.length; i++) {
                contactForm[form_field_arr[i]].text= form_def_cont_arr[i] ;
                contactForm.txError.text='';
        private function sendForm(evt:MouseEvent):void {
            if (contactForm[form_field_arr[0]].text<=0 || contactForm[form_field_arr[0]].text==form_def_cont_arr[0]) {
                contactForm.txError.text =form_err_arr[0];
            } else if (!isValidEmail(contactForm[form_field_arr[2]].text)) {
                contactForm.txError.text = form_err_arr[2];
            } else if (contactForm[form_field_arr[3]].text<=0 || contactForm[form_field_arr[3]].text==form_def_cont_arr[3]) {
                contactForm.txError.text =form_err_arr[3];
            } else {
                variables.to_mail = mail;
                variables.senderName = contactForm[form_field_arr[0]].text;
                variables.senderPhone = contactForm[form_field_arr[1]].text;
                variables.senderEmail = contactForm[form_field_arr[2]].text;
                variables.senderMsg = contactForm[form_field_arr[3]].text;
                req.data = variables;
                loader.addEventListener(IOErrorEvent.IO_ERROR, phpError);
                loader.addEventListener(Event.COMPLETE, receiveLoad);
                loader.load(req);
                contactForm.txError.text = 'Submitting form.';
        private function phpError(e:IOErrorEvent):void {
            trace(e.text);
            contactForm.txError.text = e.text;
        private function receiveLoad(evt:Event):void {
            if (evt.target.data.retval == 1) {
                contactForm.txError.text ="Form submitted.";
                Tweener.addTween(contactForm, {delay:2, onStart:text_field_clear});
            } else {
                contactForm.txError.text="**  ERROR SENDING MAIL **";
        private function isValidEmail(email:String):Boolean {
            var emailExpression:RegExp = /^[a-z][\w.-]+@\w[\w.-]+\.[\w.-]*[a-z][a-z]$/i;
            return emailExpression.test(email);
        private function appResizeHandler(e:Event=null):void {
            if (stage) {
                var oWidth:Number = stage.stageWidth;
                var oHeight:Number = stage.stageHeight;
                if (container) {
                    oWidth = container.width;
                    oHeight = container.height;
                if (mainObj.monitorHeight>0) {
                    bg.height =  mainObj.monitorHeight;
                } else {
                    bg.height = oHeight-20;
                if (mainObj.monitorWidth>0) {
                    bg.width = mainObj.monitorWidth;
                } else {
                    !container?bg.width = oWidth-20:bg.width = oWidth-140;
                b_close.y=0;
                b_close.x = bg.x+bg.width+5;
                txt.width = bg.width - 50;
                header_bg.width =bg.width-6;
                this.y =Math.round((oHeight-bg.height)/2);
                this.x =Math.round((oWidth-bg.width)/2);
                mainObj.footerMenu.x= bg.width-13;
                mainObj.footerMenu.y= bg.height-13;
                title_1.width = bg.width-40;
                item_1.width = bg.width-40;
                item_2.width = bg.width/2-30;
                item_3.width = item_2.width;
                item_3.x = item_2.x+item_2.width+20;
                title_2.width = bg.width-40;
                contactForm.txt_name.width = item_2.width;
                contactForm.txt_phone.width = item_2.width;
                contactForm.txt_email.width = item_2.width;
                contactForm.txError.width = item_2.width;
                contactForm.txt_message.width = item_2.width;
                contactForm.txt_message.x=contactForm.txt_name.x+contactForm.txt_name.width+20;
                contactForm.mc_buttons.x = Math.round(contactForm.txt_message.x+contactForm.txt_message.width-contactForm.mc_buttons .width);
                item_1.y = title_1.y+title_1.height+10;
                item_2.y = item_1.y+item_1.height+10;
                item_3.y = item_1.y+item_1.height+10;
                if (item_2.y+item_2.height>item_3.y+item_3.height) {
                    title_2.y = item_2.y+item_2.height+10;
                } else {
                    title_2.y = item_3.y+item_3.height+10;
                contactForm.y = Math.round(title_2.y+title_2.height+10);

Similar Messages

  • Can anyone help with my PHP contact form please!

    Hi all,
    I've just implemented the email contact form as described in the PHP Solutions book by David Powers and it is working fine.
    What I'm having problems with is my form is at the bottom of a long page and you have to scroll or click a link to get to it, which means that when the submit button is pressed, whether the form is successfully submitted or a field hasn't been completed, the user ends up back at the top of the page having to scroll back down to the form before they can see the feedback (either thanking them for submitting or pointing out that they have tried to submit an incomplete form).
    Can anyone tell me how I can make the page redirect upon clicking submit so that the user returns to the part of the page where the form is so they can see the feedback instead of going to the top of the page where the form is out of view.
    Many thanks,
    Karl.

    I've attached the entire code from the page plus the css so you can see what's going on and in additiion I've put in the corefuncs.php include code.
    Hope that's enough, thanks for looking.
    Cheers,
    Karl.
    <?php
    include('includes/corefuncs.php');
    if (function_exists('nukeMagicQuotes')) {
    nukeMagicQuotes();
    // process the email
    if (array_key_exists('send', $_POST)) {
    $to = '[email protected]'; // use your own email address
    $subject = 'Feedback from my form page';
    // list expected fields
    $expected = array('name', 'email', 'comments');
    // set required fields
    $required = array('name', 'email', 'comments');
    // create empty array for any missing fields
    $missing = array();
    // assume that there is nothing suspect
    $suspect = false;
    // create a pattern to locate suspect phrases
    $pattern = '/Content-Type:|Bcc:|Cc:/i';
    // function to check for suspect phrases
    function isSuspect($val, $pattern, &$suspect) {
         // if the variable is an array, loop through each element
         // and pass it recursively back to the same function
         if (is_array($val)) {
              foreach ($val as $item) {
                   isSuspect($item, $pattern, $suspect);
         else {
         // if one of the suspect phrases is found, set Boolean to true
              if (preg_match($pattern, $val)) {
                   $suspect = true;
    // check the $_POST array and any subarrays for suspect content
    isSuspect($_POST, $pattern, $suspect);
    if ($suspect) {
    $mailSent = false;
    unset($missing);
    else {
    // process the $_POST variables
    foreach ($_POST as $key => $value) {
    // assign to temporary variable and strip whitespace if not an array
    $temp = is_array($value) ? $value : trim($value);
    // if empty and required, add to $missing array
    if (empty($temp) && in_array($key, $required)) {
    array_push($missing, $key);
    // otherwise, assign to a variable of the same name as $key
    elseif (in_array($key, $expected)) {
    ${$key} = $temp;
    // validate the email address
    if (!empty($email)) {
    // regex to ensure no illegal characters in email address
    $checkEmail = '/^[^@]+@[^\s\r\n\'";,@%]+$/';
    // reject the email address if it doesn't match
    if (!preg_match($checkEmail, $email)) {
    array_push($missing, 'email');
    // go ahead only if not suspect and all required fields OK
    if (!$suspect && empty($missing)) {
    // build the message
    $message = "Name: $name\n\n";
    $message .= "Email: $email\n\n";
    $message .= "Comments: $comments";
    // limit line length to 70 characters
    $message = wordwrap($message, 70);
    // create additional headers
    $additionalHeaders = 'From: domain.com Feedback Form<[email protected]>';
    if (!empty($email)) {
    $additionalHeaders .= "\r\nReply-To: $email";
    // send it
    $mailSent = mail($to, $subject, $message, $additionalHeaders, '[email protected]');
    if ($mailSent) {
    // redirect the page with a fully qualified URL
    header('Location: http://www.domain.com/index.php#form-div');
    exit;
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Page | title</title>
    <script type="text/javascript" src="jquery.min.js">></script>
    <script type="text/javascript" src="jquery.cycle.all.2.72.js"></script>
    <script type="text/javascript">
    $(function() {
        $('#slideshow').cycle({
            speed:       1400,
            timeout:     8000
    </script>
    <link href="main.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper" class="container">
    <div id="header">
    <h1 class="logo">XXX Xxxx Xxxxx</h1>
    <h2 class="subhead">Xxx Xxxxxxx xxx Xxxxxx Xxxxxxx xx Xxxx xxx Xxxxx.</h2>
    <div id="nav">
    <h2>Need more information?</h2>
    <h3>Look no further...</h3>
    <ul>
      <li><a class="nav-about" href="#about-div">About Us...</a></li>
      <li><a class="nav-contact" href="#contact-div">Contact Us...</a></li>
    </ul>
    </div>
    <!-- end nav -->
    </div><!-- end header -->
    <div id="page-content">
    <div id="cycle">
    <div id="cycle-nav"></div>
    <div id="slideshow" class="pics">
                <img src="im/slides/escape.jpg" border="0" alt="" title="" width="547" height="339" />
                <img src="im/slides/old-lady.jpg" border="0" alt="" title="" width="547" height="339" />
                <img src="im/slides/gouge.jpg" border="0" alt="" title="" width="547" height="339" />
                <img src="im/slides/disarm.jpg" border="0" alt="" title="" width="547" height="339" /></div><!-- slideshow -->
    </div><!-- cycle -->
    <div id="right-column">
    <div id="ladies">
    <h1>Xxxxxx xxx'x xxx xxxxx xxxx xxxx.</h1>
    <p>Xxxx xxxxxxxxx xxxx XXX xxxxx xxxxxxxxxx xxx xxxx xxxx xxxx xxxx!</p>
    <p class="bottom">XXXX XX xx xxxx xxx xxxx...</p>
    </div>
    <div id="courses">
         <div id="course1">
          <h2 class="top"><strong>Xxxx Xxxx Xxxxxxx Xxxxxx Xxxxxxx</strong></h2>
        <p>XXX Xxxx Xxxx Xxxxxxx xxxxxx xxx x xxxx-xxxx xxxxxxxx xxx xx xxxx xxxx xxxxx xxx xxxxxx.</p>
        <p><strong>XXXXX:</strong> XXX.XX xxx xxxxxx.</p>
        <p><strong>XXXX XXXXXX:</strong><br />
        Xxxxxx Xxx Xxxx<br /><strong>[XXXXXX XXXXXXXXX]</strong></p>
        <ul><strong>XXXXXX XXXXXXX:</strong>
    <li>Xxxxxx Xxx Xxxxxxxxx</li>
    <li>Xxxxxx Xxx Xxxxxxxx</li>
    <li>Xxxxxx Xx Xxxxxxx -XXXX</li>
    </ul>
        <h2>Xxxx Xxxxx...</h2>
        <p class="book-early">Xx xxxxx xxx xx xx xxxxxxxx xxxxxxx xxx xxx xxxxxxx xxx xxxxx xxxxxxxxxx xx x xxxxxxx xxxxxxx xxxxxxxx xx xxx xxxx xxx xxxxxxxxx xxxxxx xxxx xx xxxxx xx xxxxxxx xx xxx xxx xxxxxxxx xx xxxxxxxxx xx xxxxxx.</p>
        <h2><strong>Xxxxxxxxx xx xxx Xxxxxx</strong></h2>
        <p class="location">      XX. Xxxxxx Xxxx, <br />
          Xxx Xxxxxxxxx Xxxxxx, Xxxxxxxx Xxxx, Xxxx (xxxxx xxx xxxx xx xxxx).<br />
          Xxxxxxxx xx xxxxxxxxxxx xxxx xxxxxxxx Xxxx.</p>
        <h2><strong>Xxxxxxxxx xx xxx Xxxxxx</strong></h2>
        <p class="structure"><strong>Xxxxxxx xxxxxxx:</strong><br />
          XX.XXxx – XX.XX xx<br />
          <strong>Xxxxx xxxxx:</strong><br />
          XX xxxx.<br />
          Xxxxxx xxxxxxx xxxx xxx xxxxxx Xxxxx.<br />
          <strong>Xxxxxxxxxx xxxxxxx:</strong><br />XX.XXxx – X.XXxx</p>
        <h2><strong>Xxxxxx Xxxx...</strong></h2>
        <p class="news">Xxxxx xxxx xxxxx xxx xxxx xxxxx xxx Xxxx Xxxx Xxxxxxx Xxxxxx.<br />
        </p>
      </div>
      <div class="to-top">
      <p><a href="#header">[Back to Top]</a></p>
      </div>
         <div id="course2">
          <h2 class="top"><strong>Xxxxx Xxxx Xxxxxxx Xxxxx Xxxxxxx</strong></h2>
          <p>Xxx XXX XXXXX Xxxx Xxxxxxx Xxxxx xxx x xxx-xxxx xxxxxxxx xxx xx xxxx xxxxxx.</p>
        <p><strong>XXXXX:</strong> XX.XX xxx xxxxxx</p>
        <p><strong>XXXX XXXXX:</strong><br /> 
        Xxxxxx XXxx Xxx<br /><strong>[XXXXXX XXXXXXX]</strong></p>
        <ul><strong>XXXXXX XXXXXXX:</strong>
    <li>Xxxxxx Xxx Xxxx</li>
    <li>Xxxxxx Xxx Xxxx</li>
    <li>Xxxxxx Xxx Xxxx</li>
    <li>Xxxxxx Xxx Xxxx</li>
    </ul>
        <h2>Xxxx Xxxxx...</h2>
        <p class="book-early">Xx xxxxx xxx xx xx xxxxxxx xxxxxxx xxx xxx xxxxxxx xxx xxxxx xxxxxxxxxx xx x xxxxxxxxx xxxxxxx xxxxxxxx xx xxx xxxx xxx xxxxxxxxx xxxxxx xxxx xx xxxxx xx xxxxxxx xx xxx xxx xxxxxxxxxx xx xxxxxxxxx x xxxxxx.</p>
        <h2><strong>Xxxxxxxxx xx xxx Xxxxx</strong></h2>
        <p class="location">Xxxxxxxxx Xxxx, Xxxxxx Xxxxxx, Xxxxx, (xxx xxxxxxx xxxxxxxxx xx -<br />
          Xxxxxxx xx xxxxxxxxxx xxxx - </p>
        <h2><strong>Xxxxs Xxxx...</strong></h2>
        <p class="news">Xxxxx xxxx xxxxx xxx xxxx xxxxx xxx Xxxxx Xxxx Xxxxxxx Xxxxx.<br />
        </p>
      </div><!-- Course 2 end -->
      <div class="to-top">
      <p><a href="#header">[Back to Top]</a></p>
      </div>
    </div><!-- Courses end -->
    </div><!-- end right column -->
    <div id="main-content" >
    <div id="main-content-1" class="clearfix">
    <h2>Xxxxxxx xx xxx Xxxx Xxxxxxx<br />
    xxxxxxx xxxx xxx XXX.</h2>
    <h3>Xxxxxx xxx Xxxxx xxxxxxx…</h3>
    <p>Xxx XXX xx xx xxxxxxxxxxx xxxxx xxxxxx xxxxxxx xx xxxx xxxxxxx xx Xxxx xxx Xxxxx - Xxxx Xxxxxxxxx, xxxxxx xxxxxxxxx xx xxxxx xxxxxx xxx xxxxxx xxxxxx,   xxx xxxxxxxx x xxxx xxxxxxx xx xxxxxx xxxxxxxxx xx xxxxxxxx xxxx xxxxxxx.</p>
    <p>Xxx XXX xxxxxx xxx xxxxxxx xxx xxxxxxxx Xxxx Xxxxxxx xx xxx Xxxx / Xxxxx xxxx xx Xxxx Xxxxxxxxx.</p>
    <p>Xxx xxxxx xxxxxx xx x xxx xxx Xxxx Xxxxxxx Xxxxxx xxxx x xxxxxxxx xx xxxxxxxxx xxxx xxxxx xxxxx xx xxxx xx Xxxx xxxx xxxxx xxx xxxxxx xx xxx Xxxxxxxx Xxxxxx.</p>
    <p>Xxx xxxxxx xxxxxx xx x xxxxxx Xxxx Xxxxxxx Xxxxx xxxxx xx x xxx xxxx xxxxxxx xxx xx xxxx xx xxx xxxxxx xx xxxxx xx Xxxxxxxx Xxxx xx xxxxx Xxxxx Xxxxxx. Xxxxxxxx xxx xx xxxxx xx xxxx xxxxx.</p>
    <h3 class="extra-padding">Xxx xx xx xxx xxx xxxx xxxx xxx xxxxx?</h3>
    <p>Xxxx xxxxxx xx xxxxxxxxxx xxxxxx xx xxxxxx xxx xxx xxxx xxxxxx xxxxxxx xxx xxxx xxxxxx xx xx xxx xxxxxxxxxx xxx xxxx xx xxxx xx xx xxxxxxx xxxxxx xxxx xx xxxxxxxx xx xxxxxxxx xxxx xx xxxxxx xxxxxxxxxx xxxxxxx xxx xxxxxx xx xxxxx xxxxxxxx.</p>
    <p>xxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p>xxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p>xxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p><strong>xxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</strong></p>
    <p>xx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p>xx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p><strong>Xxxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx..</strong></p>
    <h3 class="extra-padding">Xxxxxxx xx…</h3>
    <h4>Xxx xxxxxxxxxx xx xxx Xxxx Xxxx Xxxxxxx Xxxxxx xxxxxxxx xxxx xxxxxx xxxx</h4>
    <h4>Xxx xxxxxxxxxx xx xxx Xxxx Xxxx Xxxxxxx Xxxxxx xxxxxxxx xxxx xxxxxx xxxx</h4>
    </div>
    <div id="main-content-2" class="clearfix">
      <h4> </h4>
    </div>
    </div><!-- end maincontent -->
    <div id="bottom-content">
    <div id="about-div">
    <h2>Xxxxx xx…</h2>
    <p>Xx, xx xxxxx ixx Xxxxxx Xxxxxxxxx xxxx xxxx xxxx xxxxxxx xxx xxxxxxxx xxxx xxxxxxx xxx xxxx xxxxxx xxxx xxxxx.</p>
    <p>Xx, xx xxxxx ixx Xxxxxx Xxxxxxxxx xxxx xxxx xxxx xxxxxxx xxx xxxxxxxx xxxx xxxxxxx xxx xxxx xxxxxx xxxx xxxxxXx, xx xxxxx ixx Xxxxxx Xxxxxxxxx xxxx xxxx xxxx xxxxxxx xxx xxxxxxxx xxxx xxxxxxx xxx xxxx xxxxxx xxxx xxxxx</p>
    <p>Xx, xx xxxxx ixx Xxxxxx Xxxxxxxxx xxxx xxxx xxxx xxxxxxx xxx xxxxxxxx xxxx xxxxxxx xxx xxxx xxxxxx xxxx xxxxx</p>
    <div class="about-bottom-to-top">
      <p><a href="#header">[Back to Top]</a></p>
      </div>
    </div>
    <hr />
    <div id="links-div">
    <h2>Xxxxxx xxxxx...</h2>
    <ul>
         <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
    </ul>
    </div>
    <div id="contact-div">
    <h2>Xxxxxx xxx...</h2>
    <p>Xxxxx x xxxx xxx xxx xxxxxxxxxx xxx xxxxxxx x xxxx xxx xxx xxxxxxxxxx xxx xxx xxxx x xxxx xxx xxx xxxxxxxxxx xxx xxxxxxx x xxxx xxx xxx xxxxxxxxxx xxx xxx<br />
    </p>
    <p class="phone">Xxxxx</p>
    </div>
    <div id="form-div">
         <p>Please make sure you complete all three fields below so that we can reply directly.</p>
         <?php
              if ($_POST && isset($missing) && !empty($missing))
              ?>
              <p class="warning">Please complete the missing item(s) indicated.</p>
              <?php
              elseif ($_POST && !$mailSent) {
              ?>
              <p class="warning">Sorry, there was a problem sending your message.
              Please try later.</p>
              <?php
              elseif ($_POST && $mailSent) {
              ?>
              <p class="thanks"><strong>Your message has been sent. Thank you for your feedback.
              </strong></p>
              <?php } ?>
      <form method="post" id="feedback" class="contactForm" action="">
                                              <label for="name">Name: <?php
                                                 if (isset($missing) && in_array('name', $missing)) { ?>
                                                 <span class="warning">Please enter your name</span><?php } ?>
                                              </label>
                                     <input name="name" id="name" type="text" class="formbox"
                                             <?php if (isset($missing)) {
                                                      echo 'value="'.htmlentities($_POST['name']).'"';
                                             } ?>
                                             />
                                              <label for="email">Email: <?php
                                                 if (isset($missing) && in_array('email', $missing)) { ?>
                                                 <span class="warning">Please enter a valid email address</span><?php } ?>
                                            </label>
                                        <input name="email" id="email" type="text" class="formbox"
                                            <?php if (isset($missing)) {
                                                      echo 'value="'.htmlentities($_POST['email']).'"';
                                            } ?>
                                            />
                                        <label for="comments">Comments: <?php
                                            if (isset($missing) && in_array('comments', $missing)) { ?>
                                            <span class="warning">Please enter your comments</span><?php } ?>
                                            </label>
                                        <textarea name="comments" id="comments" cols="30" rows="10"><?php
                                                 if (isset($missing)) {
                                                      echo htmlentities($_POST['comments']);
                                            } ?></textarea>
                                             <input name="send" id="send" class="formSubmit" type="submit" value="Send message" />
      </form>
       <div class="form-bottom-to-top">
      <p><a href="#header">[Back to Top]</a></p>
      </div>                         
    </div>
    </div>
    <div id="footer">
    <p>Xxxxxxxxxxxxx</p>
    </div>
    </div><!-- wrapper -->
    </div>
    <!-- end page-content -->
    </div><!-- end wrapper -->
    </body>
    </html>
    /* following is the include php code */
    <?php
    function nukeMagicQuotes() {
      if (get_magic_quotes_gpc()) {
        function stripslashes_deep($value) {
          $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
          return $value;
        $_POST = array_map('stripslashes_deep', $_POST);
        $_GET = array_map('stripslashes_deep', $_GET);
        $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
    ?>
    /* Following is the css */
    @charset "UTF-8";
    /* CSS Document */
    html { margin: 0; background: #faf9f2 url(im/background_texture_tile.jpg) top center repeat; text-align: center; }
    body { margin: 0 auto; background: url(im/background_texture_tile.jpg) top center repeat; text-align: center; width: 910px;
    padding: 0; font: 62.5% Arial, Verdana, Helvetica, sans-serif; }
    h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, form, label, fieldset, legend, blockquote, table { margin: 0; padding: 0; }
    #wrapper {
         text-align: left;     
         position: relative;
    .container{     
         margin: 0 auto 0;
         width: 910px;
    #header {
         width: 870px;
         height: 150px;
         margin: 0 20px 20px 20px ;
         background: url(im/header-bg.gif) top left no-repeat;
    h1.logo {
         float: left;
         height: 130px;
         width: 315px;     
         margin: 0 0 0 50px;
         border: 0;
         outline: 0;
         text-indent:-9999px;
         background:url(im/logo.jpg) 0 10px no-repeat;
         display: inline;
    h2.subhead {
         font-weight: bold;
         font-size: 1.6em;
         line-height: 1.4em;
         color: #999;
         float: right;
         width: 135px;
         text-align: right;
         margin: 25px 320px 0 0;
         display: inline;
    #nav {
         position: absolute;
         top: 0px;
         right: 50px;
         width: 270px;
         height: 277px;
         background: url(im/nav-bg.png) top left no-repeat;
    #nav h2 {
         font-size: 1.6em;
         text-align: center;
         color: #4D98C5;
         margin-top: 35px;
    #nav h3 {
         font-size:2.2em ;
         text-align: center;
         color: #4D98C5;
         padding-bottom: 13px;
         margin: 0 40px 0;
         border-bottom: 4.5px dotted #999;
    #nav ul {list-style:none;}
    #nav li {
    list-style:none;
    font-size: 1.4em;
    font-weight: bold;
    margin: 0 40px 0 40px ;
    border-bottom: 4.5px dotted #999;
    #nav li a {
    text-align: left;
    background-image:url(im/CSSSprite.jpg);
    background-repeat:no-repeat;
    color: #4D98C5;
    text-decoration: none;
    line-height: 65px;
    margin: 10px 0 10px 0;
    #nav li a.nav-about {
    background-position: 105px -15px;
    padding: 20px 95px 20px 0;
    #nav li a.nav-about:hover,
    #nav li a.nav-about:active,
    #nav li a.nav-about:focus {
    background-position: 105px -102px;
    color: #814098;
    #nav li a.nav-contact {
    background-position: 105px -180px;
    padding: 20px 80px 20px 0;
    #nav li a.nav-contact:hover,
    #nav li a.nav-contact:active,
    #nav li a.nav-contact:focus {
    background-position: 105px -267px;
    color: #814098;
    /* Cycle styles */
    #cycle {
         float: left;
         margin-left: 20px;
         margin-bottom: 25px;
         width: 547px;
         height: 339px;
         clear: both;
    .pics { height: 339px; width: 547px; padding:0; margin:0; overflow: hidden; border: 1px solid #814098; }
    /* End cycle styles */
    /*///// RIGHT CONTENT ////*/
    #right-column {
         float: right;
         width: 260px;
         margin: 0 53px 0 0;
         display: inline;
    #ladies {
         width: 252px;
         height: 437px;
         background: url(im/pink-ladies.png) top left no-repeat !important ;
         background: url(im/pink-ladies.gif) top left no-repeat ;
         margin: 120px 0 0 6px;
    #ladies h1 {
         margin: 0px 30px 150px 20px;
         padding-top: 60px;
         font: bold 2em Georgia, "Times New Roman", Times, serif;
         text-align: center;
         color: #6A437E;
    #ladies p {
         margin: 0px 30px 15px 20px;
         font: normal 1.8em Georgia, "Times New Roman", Times, serif;
         text-align: center;
         line-height: 1.4em;
         color: #EF4358;
    #ladies p.bottom {
         margin: 0px 30px 0px 20px;
         font: bold 2.2em Helvetica, Arial, sans-serif;
         text-align: center;
         color: #6A437E;
    #courses{
         margin-top: 15px;
         margin-bottom: 18px;
    #courses h2 {
         letter-spacing: .07em;
    /*Hull Course */
    #course1 {
         margin: 0 0 5px 6px ;
         width:240px;
         background:url(im/rightnav.gif) bottom left no-repeat;
    #course1 h2.top {
         background:url(im/rightnaw.gif) top left no-repeat;
         margin:0;
         padding:15px;
         color:#FFFFFF;
         font-size:1.6em;
         line-height: 1.4em;
         font-weight: bold;
         text-transform:uppercase;
    #course1 h2 {
         font-size:1.6em;
         line-height: 1.4em;
         color:#FFFFFF;
         background-color:#814198;
         padding:15px;
         text-transform:uppercase;
    #course1 p {
         font-size:1.4em;
         line-height:1.4em;
         padding: 15px 15px 0 15px;
         margin:0;
    #course1 p a {
         text-decoration:underline;
         font-weight:bold;
         color: #9f1f63     
    #course1 p a:hover {
         color: #ec008c;
    #course1 ul {
         margin: 20px 0 20px 15px;
         font-size:1.4em;
         line-height: 1.6em;
         list-style: none;
    #course1 p.book-early {
         padding-bottom: 20px;
    #course1 p.location {
         padding-bottom: 30px;
    #course1 p.structure {
         padding-bottom: 30px;
    #course1 p.news {
         padding-bottom: 30px;
    #right-column .to-top {
         color: #000;
         text-align: right;
         padding-right: 27px;
         margin-bottom: 40px;
    #right-column .to-top a, a:link {
         color: #000;
         font-size: 1.3em;     
         text-decoration: none;
    #right-column .to-top a:hover {
         text-decoration: underline;
    #course2 {
         margin: 0 0 5px 6px ;
         width:240px;
         background:url(im/rightnav.gif) bottom left no-repeat;
    #course2 h2.top {
         background:url(im/rightnaw.gif) top left no-repeat;
         margin:0;
         padding:15px;
         color:#FFFFFF;
         font-size:1.6em;
         line-height: 1.4em;
         font-weight: bold;
         text-transform:uppercase;
    #course2 h2 {
         font-size:1.6em;
         line-height: 1.4em;
         color:#FFFFFF;
         background-color:#814198;
         padding:15px;
         text-transform:uppercase;
    #course2 p {
         font-size:1.4em;
         line-height:1.4em;
         padding: 15px 15px 0 15px;
         margin:0;
    #course2 p a {
         text-decoration:underline;
         font-weight:bold;
         color: #9f1f63     
    #course2 p a:hover {
         color: #ec008c;
    #course2 ul {
         margin: 20px 0 20px 15px;
         font-size:1.4em;
         line-height: 1.6em;
         list-style: none;
    #course2 p.book-early {
         padding-bottom: 20px;
    #course2 p.location {
         padding-bottom: 30px;
    #course2 p.news {
         padding-bottom: 30px;
    /*///// RIGHT CONTENT ////*/
    #main-content {
         margin: 0 360px 0 40px;
         padding: 0;
    #main-content-1 {
         width: 510px;
    #main-content-2 {
         width: 510px;
    #main-content p {
         font-family: Arial, Verdana, Helvetica, sans-serif;
         font-size: 1.6em;
         line-height: 1.4em;
         padding-bottom: 1em;
         color: #666;
    #main-content h2{
         padding: 0 0 20px 0;
         margin: 0;
         font-family: Arial, Verdana, Helvetica, sans-serif;
         font-size: 3em;
         color: #666;
    #main-content h3 {
         font-size: 2.3em;
         color: #666;
         font-weight: normal;
         padding-bottom: 0.8em;
    #main-content h3.extra-padding {
         padding-top: 0.8em;
         padding-bottom: 0.8em;
    #main-content h4 {
         font-size: 2em;
         font-weight: normal;
    #bottom-content {     
         background-color: #814098;
         clear: both;
         margin: 0 20px;
         width: 870px;
         float: left;
    #bottom-content h2 {
         font-family: Arial, Verdana, Helvetica, sans-serif;
         font-size: 2.6em;
         letter-spacing: .05em;
         color: #FFF;
         font-style: normal;
         padding: 0 0 15px 0;
    #bottom-content p {
         color: #FFF;     
    #about-div {
         padding: 0 320px 30px 0;
         background: url(im/sheila.png) 560px 20px no-repeat !important;
         background: url(im/sheila.jpg) 560px 20px no-repeat ;
    #about-div h2 {
         padding: 20px 28px 15px 28px;
    #about-div p {
         padding: 0 28px 20px 28px;
         font-size: 1.5em;
         line-height: 1.4em;
    .about-bottom-to-top {
         position: relative;
         top: 65px;
         right: -320px;
         text-align: right;
         padding-right: 33px;
         font-size: .68em;     
    .about-bottom-to-top a, a:link {
         color: #FFF;
         text-decoration: none;
    .about-bottom-to-top a:hover {
         text-decoration: underline;
    hr {
           margin: 40px 28px 20px 28px;
           color: #C09FCB;
           border-top: 1px black solid;
    #links-div {
         margin: 0 15px 0px 28px;
         float: left;
         width: 254px;
    #links-div li {
         list-style: none;
         padding: 0 0;
    #links-div li a {
         font-size:1.5em;
         line-height: 1.5em;
         text-decoration: none;
         color: #FFF;
    #links-div li a:hover {
         text-decoration: underline;
    #contact-div {
         margin: 0 10px 0 0;
         width: 254px;
         float: left;
    #contact-div p {
         font-size: 1.5em;
         line-height: 1.4em;
    #contact-div p.phone {
         font-size: 2.2em;
         font-weight: bold;
         letter-spacing: .05em;
    /* CONTACT FORM */
    #form-div {
         margin: 0 28px 50px 0 ;
         float: right;
         width: 281px;
    #form-div .contactForm {
         padding:6px;
    #form-div .contactForm .formbox {
         font-family: Arial, Verdana, Helvetica, sans-serif;
         font-size:1.2em;
         color:#333;
         width:261px;
         padding:5px 3px;
         margin:0 0 5px 0 ;
         border:1px solid #666;
         border-top-color:#000;
         background:#fff url(im/contact-input.gif) top repeat-x;
    #form-div .contactForm #comments {
         font-family: Helvetica, Arial, sans-serif;
         font-size:1.23em;
         color:#333;
         line-height: 1.5em;
         width:258px;
         padding: 5px 0.4em 0 0.4em ;
         margin: 0 0 10px 0 ;
         display:block;
         clear:both;
         border:1px solid #666;
         border-top-color:#000;
         background:#fff url(im/contact-textarea.gif) top repeat-x;
    .formSubmit {
         display:block;
         clear:both;
         width:110px;     
         height:25px;
         padding:0;
         border:none;
         background-color: #251149;
         text-align:center;
         font-size:1.2em;
         color:#fff;
         cursor:pointer;
    .formSubmit:hover {
         background-color: #E76F34;
    .form-bottom-to-top {
         text-align: right;
         padding-right: 33px;
         font-size: 0.68em;     
         margin-top: 40px;
    .form-bottom-to-top a, a:link {
         color: #FFF;
         text-decoration: none;
    .form-bottom-to-top a:hover {
         text-decoration: underline;
    /* David Powers styles */
    .warning {
        font-weight: bold;
         font-size: 1em;
        color: #FCCCB9;
         display: block;
    .thanks {
        font-weight: bold;
        color: #f00;
         margin-left: 3px;
    #form-div p {
        margin: 0 0 10px 8px ;
         font-size: 1.5em;
         line-height: 1.4em;
    label {
        font-weight: bold;
         font-size: 1.6em;
        color: #FFF;
        display: block;
    /* END CONTACT FORM */
    #footer {
         height: 10em;
         background-color: #FFF;
         margin: 0 20px;
         clear: both;
    #footer p {
         font-size: 1.4em;
         color: #666;
         padding: 40px 0 30px 120px;     
         background: url(im/footer-logo.gif) 50px 20px no-repeat ;
    .clearfix:after{ content:"."; display:block; height:0; clear:both; visibility:hidden; }
    .clearfix {display: inline-block;}
    /* Hide from IE Mac \*/
    .clearfix {display:block;}
    /* End hide from IE Mac */
    * html .clearfix{ height: 1px; }

  • HT2486 How do I import existing Outlook contact groups into Mac Address Book?

    After months of problems with Microsoft Outlook 2011 for Mac, I am switching to Mac Mail. I seem to have successfully imported my individual contacts into Address Book. However, I have been unsuccessful in figuring out how to import group contacts into Mac Mail.
    So far I have created .txt files, (a separate one for each group), listing each e-mail address in that group separated by a comma. Can I input this information into Address Book somehow? If not, how else can I import my groups into Address Book in a more efficient way than manually entering them? Manually dragging and dropping names into each new Address Book group is not an option, since I  have about 50 groups with 20-50 people in each of them. It would take me extraordinary amounts of time to do that, not to mention the frustration.
    A second question: There are many duplicates listed in my address book. When I select Card>Look for Duplicates, it tells me that No duplicates are found. They most definitely exist, however. How can I erase them without having to manually delete each duplicate?

    You can't transfer the groups, you'll need to do it the hard way.
    As for the duplicates, how many accounts do you have in your Address Book?

  • Import address book contact list into ichat

    I am going to make a new aim screen name, and i was wondering if i do, will i be able to import my address book contacts back into ichat for the new account?

    The AOL Service Assistant works fine for transfering the AOL contacts to the Apple Address Book. However, I was unable to get the AOL favorites to tansfer to Safari. It keeps hanging up with the rotating basketball. Any further suggestions?
    466 MHz PowerPC G4   Mac OS X (10.3.9)   No DVD

  • Help with html / php contact form

    Hi guys I was hoping to get some help with a contact form on my website, to be honest I havent a clue about php but kind of okay with html thats why the php code is just a copy and paste from some website, just trying to marry it up with the html but getting errors.
    Hopfully one of you can see the problem.
    Error on Submitting:
    Notice: Undefined variable: name in \\nas44ent\Domains\g\gethinhayman.co.uk\user\htdocs\send_form_email.php on line 69
    Notice: Undefined variable: message in \\nas44ent\Domains\g\gethinhayman.co.uk\user\htdocs\send_form_email.php on line 75
    We are very sorry, but there were error(s) found with the form you submitted. These errors appear below.
    The Name you entered does not appear to be valid.
    The Comments you entered do not appear to be valid.
    HTML Code:
    <section id="contact" class="four">
                                                                <div class="container">
                                                                          <header>
                                                                                    <h2>Contact</h2>
                                                                          </header>
                                                                          <form method="post" action="send_form_email.php">
                                                                                    <div class="row half">
                                                                                              <div class="6u"><input type="text" class="text" name="name" placeholder="Name" /></div>
                                                                                              <div class="6u"><input type="text" class="text" name="email" placeholder="Email" /></div>
                                                                                    </div>
                                                                                    <div class="row half">
                                                                                              <div class="12u">
                                                                                                        <textarea name="message" placeholder="Message"></textarea>
                                                                                              </div>
                                                                                    </div>
                                                                                    <div class="row">
                                                                                              <div class="12u">
                                                                                                        <a href="http://www.mywebsite.co.uk/email_form.php" class="button submit">Send Message</a>
                                                                                              </div>
                                                                                    </div>
                                                                          </form>
                                                                </div>
                                                      </section>
    php Code:
    <?php
    if(isset($_POST['email'])) {
        $email_to = "my email address";
        $email_subject = "Mail from Site";
        function died($error) {
            // your error code can go here
            echo "We are very sorry, but there were error(s) found with the form you submitted. ";
            echo "These errors appear below.<br /><br />";
            echo $error."<br /><br />";
            echo "Please go back and fix these errors.<br /><br />";
            die();
        // validation expected data exists
        if(!isset($_POST['name']) ||
            !isset($_POST['email']) ||
            !isset($_POST['message'])) {
            died('We are sorry, but there appears to be a problem with the form you submitted.');      
        $first_name = $_POST['name']; // required
        $email_from = $_POST['email']; // required
        $comments = $_POST['message']; // required
        $error_message = "";
        $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
      if(!preg_match($email_exp,$email_from)) {
        $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$name)) {
        $error_message .= 'The Name you entered does not appear to be valid.<br />';
      if(strlen($message) < 1) {
        $error_message .= 'The Comments you entered do not appear to be valid.<br />';
      if(strlen($error_message) > 0) {
        died($error_message);
        $email_message = "Form details below.\n\n";
        function clean_string($string) {
          $bad = array("content-type","bcc:","to:","cc:","href");
          return str_replace($bad,"",$string);
        $email_message .= "Name: ".clean_string($name)."\n";;
        $email_message .= "Email: ".clean_string($email)."\n";
        $email_message .= "Message: ".clean_string($message)."\n";
    // create email headers
    $headers = 'From: '.$email_from."\r\n".
    'Reply-To: '.$email_from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
    @mail($email_to, $email_subject, $email_message, $headers); 
    ?>
    <?php
    ?>

    PHP CODE:  SaveAs send_form_email.php
    <?php
    if(isset($_POST['email'])) {
        // EDIT THE 2 LINES BELOW AS REQUIRED
        $email_to = "[email protected]";
        $email_subject = "Your email subject line";
        function died($error) {
            // your error code can go here
            echo "We are very sorry, but there were error(s) found with the form you submitted. ";
            echo "These errors appear below.<br /><br />";
            echo $error."<br /><br />";
            echo "Please go back and fix these errors.<br /><br />";
            die();
        // validation expected data exists
        if(!isset($_POST['name']) ||
            !isset($_POST['email']) ||
            !isset($_POST['message'])) {
            died('We are sorry, but there appears to be a problem with the form you submitted.');     
        $name = $_POST['name']; // required
        $email_from = $_POST['email']; // required
        $comments = $_POST['message']; // required
        $error_message = "";
        $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
      if(!preg_match($email_exp,$email_from)) {
        $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$name)) {
        $error_message .= 'The Name you entered does not appear to be valid.<br />';
      if(strlen($message) < 2) {
        $error_message .= 'The message you entered does not appear to be valid.<br />';
      if(strlen($error_message) > 0) {
        died($error_message);
        $email_message = "Form details below.\n\n";
        function clean_string($string) {
          $bad = array("content-type","bcc:","to:","cc:","href");
          return str_replace($bad,"",$string);
        $email_message .= "Name: ".clean_string($name)."\n";
        $email_message .= "Email: ".clean_string($email_from)."\n";
        $email_message .= "Message: ".clean_string($message)."\n";
    // create email headers
    $headers = 'From: '.$email_from."\r\n".
    'Reply-To: '.$email_from."\r\n" .
    'X-Mailer: PHP/' . phpversion();
    @mail($email_to, $email_subject, $email_message, $headers);
    ?>
    <!-- include your own success html here -->
    Thank you for contacting us. We will be in touch with you very soon.
    <?php
    ?>
    HTML Code -- save as html page.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Contact Form</title>
    </head>
    <body>
    <section id="contact" class="four">
    <div class="container">
    <header>
    <h2>Contact</h2>
    </header>
    <form method="post" action="send_form_email.php">
    <div class="row half"> <div class="6u">
    <input type="text" class="text" name="name" placeholder="Name" />
    </div>
    <div class="6u">
    <input type="text" class="text" name="email" placeholder="Email" />
    </div>
    </div>
    <div class="row half"> <div class="12u">
    <textarea name="message" placeholder="Message"></textarea>
    </div>
    </div>
    <div class="row">
    <div class="12u">
    <input type="submit" name="submit" value="Send">
    </div>
    </div>
    </form>
    </div>
    </section>
    </body>
    </html>
    Upload both to your Apache server to test.
    EDIT:  changed typo on Submit button -- valuse to value.
    Nancy O.

  • Help with a simple contact form.

    Hi there..
    I am having trouble making a contact form with a servlet. I have a Fedora Core Linux Box running ddns..
    My internet account is sympatico.. which a username and password is required to send out with smtp..
    I need help creating a servlet and I have java mail also..
    This is what I have so far...
    I have more info below
    <form class="formContactus1" name="formContactus1" method="post" action="/SendMail" onsubmit="validerForm();">
                                                      <table id="tblContactus">
                                                           <tbody><tr>
                                                                <td class="tdLeft">
                                                                     <label><fmt:message key="Form_firstname" /></label>
                                                                </td>
                                                                <td class="tdRight">
                                                                     <input class="contactTextName" id="last_name" name="last_name" maxlength="100" type="text">
                                                                </td>
                                                           </tr>
                                                           <tr>
                                                           <td class="tdLeft">
                                                                <label><fmt:message key="Form_lastname" /></label>
                                                           </td>
                                                           <td class="tdRight">
                                                                <input class="contactTextName" id="first_name" name="first_name" maxlength="75" type="text">
                                                           </td>
                                                      </tr>
                                                      <tr>
                                                           <td class="tdLeft">
                                                                <label><fmt:message key="Form_email" /></label>
                                                           </td>
                                                           <td class="tdRight">
                                                                <input class="contactTextName" id="email" name="email" maxlength="75" type="text">
                                                           </td>
                                                      </tr>
                                                           <tr>
                                                                <td class="tdLeft" valign="top">
                                                                     <label><fmt:message key="Form_message" /></label>
                                                                </td>
                                                                <td>
                                                                     <textarea class="contactTextMessage" id="message" cols="" rows="" name="message"></textarea>
                                                                </td>
                                                           </tr>
                                                      </tbody></table>
                                                      <!-- This is the anti-spam validation images... -->
                                                      <table id="tblCaptcha">
                                                           <tbody><tr>
                                                                <td class="right" id="tdImgCaptcha"><img style="height: 35px;" src="/captcha/img"></td>
                                                                <td class="right" id="tdInputCaptcha"><input name="captchaAnswer" type="text"></td>
                                                           </tr>
                                                           <tr>
                                                                <td class="right" colspan="2" valign="bottom">
                                                                     <input id="contactSubmit" name="send" value="<fmt:message key="Form_submit" />" type="submit">
                                                                </td>
                                                           </tr>
                                                      </tbody></table>
                                                 </form>

    You forgot to tell the details about the trouble. Please elaborate. What happens? What happens not?
    Please also read this how to ask questions the smart way: [http://www.catb.org/~esr/faqs/smart-questions.html].

  • Need help with creating a contact form!

    I searched the forum, and found the suggestion to go to Bravenet and create the form, and then copy the code into the HTML snippet.
    I've done that - but I need to change the font - along with its color and possibly the size.
    Here is the code:
    <form method="post" enctype="multipart/form-data" action="http://pub5.bravenet.com/emailfwd/senddata.php">
    <input type="hidden" name="usernum" value="381593922">
    <input type="hidden" name="cpv" value="2">
    <!-- DO NOT CHANGE OR REMOVE THE 3 TAGS ABOVE THIS COMMENT-->
    <table border="0" cellpadding="0" cellspacing="0" align="center">
    <tr>
    <td>
    Contact Form
    </td>
    </tr>
    <tr>
    <td>
    <label for="FirstLastName" style="float:left;width:140px;">First and Last Name:</label><input type="text" name="FirstLastName" id="FirstLastName" value="" maxlength="" style="width:200px;">
    <label for="Email" style="float:left;width:140px;">E-Mail Address:</label><input type="text" name="Email" id="Email" value="" maxlength="" style="width:200px;">
    <label for="Message" style="float:left;width:140px;">Message:</label><textarea name="Message" id="Message" maxlength="" style="width:200px;height:200px;"></textarea>
    </td>
    <tr>
    <td align="right">
    <!-- YOU CAN MODIFY THE TEXT WITHIN VALUE="" TO MODIFY YOUR BUTTON TEXT-->
    <input type="submit" value=" Submit "> <input type="reset" value=" Reset ">
    </td>
    </tr>
    </table>
    </form>
    Can anyone give me a hand??
    Thanks!
    Kim

    You might want to check out wufoo.com - very customizable

  • How to import SPD created list forms into VS WSP projects

    Dear reader,
    I'm working on a SharePoint 2013 project. At the beginning, I use SPD 2013 to create custom list and created customized New/Edit/Display forms on the list, by utilize jQuery to make more interactive web page.
    Now I'm using a VS2013 project to build a WSP package to deploy the site, starting from an empty project. I have created the list in the project, but now I have to build the custom form from zero and modify the Elemnts.xml.
    Is there any methods to export the forms I made in SPD and add them into my prject to avoid redundant work?
    Alex Du

    Hi John,
    Thank you for you advise. I did this before, VS imports all 6 list forms, 3 original ones, 3 custom ones made by me. The name of the list is Vouchers.
    And the problem is, VS combines all 6 forms into one Elements.xml file under a foler called 'ListVouhcers_Pages', which is in side 'Vouchers' list. Like this:
    And the code in one form is a DataFormWebPart declaration like the editable region of a form in SPD standard mode. The code is to generate content which will be inject into a place holder on master page called 'Main'.
    According to other post on web, if I need to add a custom list form, I have to add a new ASPX file onto a list, change its Deployment Type to ElementFile, and code the page.
    So is it mean I could copy the web part code in Elements.xml directly into a ASPX file to generate new custom form? Or can I just copy the whole 'ListVouchers_pages' and the Elements.xml to my own VS project to reproduce the forms?
    Alex Du

  • Import Export of contacts via ASCII CSV file

    Hi all. I have a 9300 Curve. This is my phone. I had a workphone which was a 9900 Bold. I backed up the Bold when i left the job. I want to import the contacts from the Bold back up into the Curve. If i export the Curve contacts to a csv file. Then import the bold contacts from restoring just the contacts list.... so far ok, bold contacts in, curve contacts overwritten but they are in a file as csv. I then try to one way sync the curve contacts back in.....the csv file has removed all the zeros from the start of every number. If you "edit" the csv in notepad they are there but when you look via excel...they are not. If i sync back in....the zero's are gone. I do not want to sync with windows live or anything like that as it will import a whole heap of **bleep** i dont want as well.
    Any clues?
    Thanks

    *Feedback*
    "Use the form below to send us your comments. We read all feedback carefully, but please note that we cannot respond to the comments you submit."
    http://www.apple.com/feedback/ipad.html
    Airstash
                                            Compatibility                               
                                            Wireless operation:                               
                                                    Web browser WiFi b/g capable device                                       
                                                    Optimized experience for iPhone, iPod touch, and iPad via HTML5                                       
                                                    No internet connection required                                       
                                            USB operation:                               
                                                    Compatible with most operating systems that support USB Mass Storage Class (thumb drives)                                       
                                                    Firmware update via file drag and drop                                       
    http://www.airstash.com/

  • Splitting HTML forms into several files

    I have an HTML form that has a lot of text inputs. I want to split this form into several pages using JSTL and Struts tags in the following manner:
    main file
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="h" %>
    <h:form action = ...>
    <c:import url=' file1' />
    <c:import url=' file2' />
    </h:form>
    file 1
    <h:text name=' ...' />
    <h:text name= '...' />
    file2
    <h:text name=' ...' />
    <h:text name= '...' />
    The problem here is that the <h:form> is on the "main file" and therefore I get an error in file1 and file2. Is there a way to pass the "prefix=h" variable from the main file to file1 and file2?
    Can anyone help find a solution for this problem?
    thanks,
    sgs.

    Instead of
    <c:import url=' file1' />
    <c:import url=' file2' />
    Can you test with ..
    <%@ include file="file1.jsp" %>
    <%@ include file="file2.jsp" %>
    My guess is that it should work since your stuts form tags in the 2 files will be ultimately compiled as one jsp [in the main one].
    -Rohit

  • Import data from Oracle table into flat file

    How to import the data in the oracle table into flat file using UTL File of PL/SQL....
    I am new in PL/SQL..
    can someone help me in writing query?

    Note : Not Tested.
    DECLARE
    V1 VARCHAR2(32767);
    F1 UTL_FILE.FILE_TYPE;
    cursor c1 is select ename,empno from emp;
    r_c1 c1%rowtype;
    BEGIN
    -- In this example MAX_LINESIZE is less than GET_LINE's length request
    -- so the number of bytes returned will be 256 or less if a line terminator is seen.
    open c1;
    F1 := UTL_FILE.FOPEN('MYDIR','MYFILE','W',256);
    loop
    fetch c1 into r_c1;
    v1:= r_c1.ename||''||To_char(r_c1.empno);
    UTL_FILE.PUT_LINE (F1, v1,TRUE);
    v1:= null;
    Exit when c1%not found;
    end loop;
    UTL_FILE.FCLOSE(F1);
    END;
    http://download.oracle.com/docs/cd/B19306_01/appdev.102
    ------------------------------------------------------------------

  • Can any one answer me how to import and use jsp libraries into uix file and

    Hi guys
    can any one help me how to import jsp libraries in to my uix file with jdev 10g production adn how to use them..if any one got any sample for this i appreciate if u cans end me that
    thanks
    Venkat

    you cannot use jsp tags inside uix xml pages.
    you can, however, use uix jsp tags inside jsp pages.

  • Help importing Workshop 8.1 project into Workshop 10

    Hi,
    I'm trying to import a workshop 8.1.4 project into workshop 10 using the "Import > Other > Workshop 8.1 Application " wizard.
    I select "myapp.work".
    I then click on "Target Runtime > New" button to make sure my project is pointing to the 8.1 runtime and not the 10.1 runtime.
    From the "New Server Runtime" wizard, I select "Weblogic 8.1", and then click on "next". I then select the 8.1 Application Server Directory, in my case it's "e:\bea814\weblogic81"
    I then click on "Finish",
    Now the problem:
    I get brought back to the "Application Import" wizard, but the 8.1 Runtime is still not installed. I dont get an error message, and the eclipse .log file is empty...
    PLEASE HELP.
    Thanks.

    Workshop 10.0 only supports WLS 10.0. Workshop 10.1 supports 8.1, 9.0, 9.1, 9.2 and 10.0, but support for 8.1, 9.0 and 9.1 is limited to standard J2EE technologies. Controls, NetUI, EjbGen, WLS Web Services, etc. are only supported on 9.2 and 10.0.
    If you have a Workshop 8.1 app that uses any of above features, then you would have to migrate to WLS 9.2 or 10.0 in order to use Workshop 10.1 with your application. The import process will upgrade your project metadata and make changes to your source code such that it will work on the newer version of WLS.
    If you have a Workshop 8.1 app that only uses straight J2EE technology, then it would be possible for you to move to Workshop 10.1 while continuing to target WLS 8.1. The catch is that you have to do a bit more work manually to make that happen. There is no upgrade wizard for this case, but you can create new projects in Workshop 10.1 that target WLS 8.1 and copy your existing Workshop 8.1 source files into the new projects.
    Hope this clarifies what is and what isn't possible.
    - Konstantin

  • Import emails and contacts from a .pst file

    my computer crashed and I was using old microsoft outlook. I have a carbonite .pst file ready to import into Thunderbird but I cannot figure out how to do it because I do not have microsft outlook on this new computer. Only the carbonite file.

    It is not at all difficult to have mutiple mail accounts in Outlook (though you may only have a single Exchange account).  The OST file is only for offline sync of a mailbox ("Cached Exchange Mode") and should only exist on portable machines that need to access existing mail without having access to the Exchange server (eg, read and reply to mail on an airplane).
    As to why he has outside email synced to the computer, he's the CEO.  You wanna tell him no?  I would love to, but such a thing would get me fired.
    It does make sense that the sync of calendars and contacts doesn't affect mail, but it's not completely correct.  The default data file chosen for mail delivery is the data file iTunes chooses to sync contacts with; thus, it absolutely does affect mail delivery.
    Please stop referring to the OST file as a mail destination - it is not, and cannot be.  The default mail delivery destination is currently the PST file, which allows him to sync his contacts and calendars from that same PST file but removes mail from the Exchange server and deposits it in the PST.  If I change the default delivery location back to his Exchange mailbox, his mail goes to the correct place, but he loses access to the PST's contacts and calendar from his phone.

  • Turn completed form into excel file?

    We have a form created from a word file converted into PDF and then made editable. Is there a way to make the information filled into this form export into an excel file? There are both text fields and check boxes in this form.
    Thanks,
    Suzanne

    Acrobat allows you to export form data as tab-delimited text, which you can then import into a spreadsheet. In Acrobat 11 you'd select: Tools > Forms > More Form Options > Export Data > Format: Text Files

Maybe you are looking for

  • "create pdf compatible file" gets tuned off when running batch

    I created an action that resizes an image and the saves it in the same format (AI) and then close the file. Next I open the AI formatted file I just created in PhotoShop it opens and looks great. So I go back to Illustrator and run the same action in

  • Java.security.AccessControlException; com.ms.security.SecurityExceptionEx

    hi , i am trying to run an applet which retrieves data from a database server, I am getting the following exception in Internet Explorer com.ms.security.SecurityExceptionEx [oracle/net/nt/TcpNTAdapter.connect]: cannot access "host":port in Netscape N

  • Fixed layout epub animation

    Hi, I have a question about the kinds of animations that can be realized with fixed layout epub: it's possible to create drag and drop elements and scrollable text? Can I use the overlay creator panel? I'm sorry, I'm new in the forum. thank you so mu

  • Printer won't stop asking for password authentication

    I have a 15 inch Macbook Pro 2007 with the grey keyboard. The rest of my family uses PCs and the household is a PC workgroup. I successfully joined the workgroup in Windows sharing mode. We have an Epson R340 printer that I sucessfully added. I can p

  • Logic 8 performance: tiger vs. leopard

    i've been waiting to upgrade to leopard, and i'd be interested if anyone has done an os upgrade and could provide some feedback regarding logic 8's performance.