HELP- Take a look at my pages- What's wrong?

Here are links to my pages: the first link doesn't load in Firefox 3. The second link loads fine. I can't figure out the difference between the two pages. Any web gurus out there that can determine my problem? I really want people using firefox to be able to view my site.
THANKS!!
LINK 1:
http://web.me.com/reeldamian/DAMIANDP.COMNYO/COMMERCIAL_REEL/COMMERCIALREEL.html
LINK 2:
http://web.me.com/reeldamian/DAMIANDP.COMNYO/Comedy_Examples/ComedyExamples.html

The Viral projects page in your first site work OK in FF3. It's the first page that's giving the exception notice. Both pages work fine in FF2.
The second page you linked to work in both FF3 and 2 for me. Try doing a Publish All to MobileMe for the site and check them again.
OT

Similar Messages

  • Google image search in ipad - returns blank page, what's wrong?

    while searching, under image tab, returns blank page.
    what's wrong?

    Works fine for me. Probably a google problem.

  • Need help with my satellite a105 not sure what is wrong

    I am not sure what is wrong but I think my laptop has viruses and I can not even update my virus software.
    When I go to google and type in anything, say I type in virus protection it takes me to the search results but when I click on any of the sites I get redirected to other search pages. I can not get to any page even if I type it directly in the address bar.
    I do not have a recovery disk that I know of because I was just going to reformat. Any ideas of what I can do?  a computer guy wants $125.00 to fix it.
    thank you
    Denise

    The problem is that, a lot of things work themselves deep into the Registry.  Clearly you have some kind of click hijacker on your system if all your links are going places you don't want. 
    OK, so you can try a couple of things.
    First, figure out if there is a way to update your anti-virus without doing it from within the program.  It may be possible to download the update files on your other computer and burn them to CD.  I would not recommend any method other than a CD-Rom.  If you use a USB flash stick you may transfer the infection back to your other computer.  If that's not possible...
    Secondly, you can download a program called Hijack This on your other computer.  http://www.trendsecure.com/portal/en-US/tools/security_tools/hijackthis  It will tell you what is running on startup, what kind of browser helper objects (BHO's) you have in your browser, etc.  If you can get this installed and run, post the log here, that will be useful to getting it fixed.
    A205-S7442
    C2D 1.5
    4GB Kingston Value RAM
    120GB Fujitsu HDD
    Windows 7 beta

  • My volume bar looks really weird? What's wrong?

    Macbook Pro Retina 15inch (Mid 2014), Processor: 2.5GHz Intel Core i7, Memory: 16 GB 1500MHz DDR3
    When I try to adjust my volume, the volume bar looks really weird and there is something wrong with the graphics. Anybody know what's wrong?
    Picture shown (attached) below. Thanks!

    Looks OK to me.

  • Need some help with code.. No idea what's wrong! I'm new..(J2ME related)

    Hey there,
    I've just started programming J2ME using Netbeans using the java mobility pack, trying to create a program which interacts with a php webserver..
    I created some code which accessed my php script on my server and returned the contents of the page back, and successfully got it working. However, i did a bit of treaking, and then tried to remove it all.. and now my code won't work. I've been examining it for a good hour and can't seem to find the error! It's annoying me pretty badly.. I'm not liking J2ME already.
    Could someone please look at my code and help me out? I really really want to get this working..
    * VisualMidlet.java
    * Created on 26 October 2007, 19:37
    import java.io.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    * @author Will
    public class VisualMidlet extends MIDlet{
    /** Creates a new instance of VisualMidlet */
    private Display display;
    private Command Submit;
    private Command okCommand2;
    private Command Submit1;
    private Form Form1;
    private StringItem stringItem1;
    String url = "http://people.bath.ac.uk/wal20/testGET.php?type=3";
    public VisualMidlet() {
    System.out.println("initialized");
    display = Display.getDisplay(this);
    Connect();
    public void startApp() {
    public void Connect(){
    try {getViaStreamConnection(url);}
    catch (IOException e) {
    System.out.println("IOException " + e);
    e.printStackTrace();
    public void getViaStreamConnection(String url) throws IOException {
    StreamConnection streamConnection = null; //declares a stream connection
    InputStream inputStream = null; // declares an input Stream
    StringBuffer b = new StringBuffer();
    TextBox textBox = null;
    try {
    System.out.println("Establishing stream");
    streamConnection = (StreamConnection)Connector.open(url);
    System.out.println("Stream established");
    inputStream = streamConnection.openInputStream();
    int ch;
    while((ch = inputStream.read()) != -1) {
    b.append((char) ch);
    textBox = new TextBox("Simple URL Fetch", b.toString(), 1024, 0);
    } finally {
    if(inputStream != null) {
    inputStream.close();
    if(streamConnection != null) {
    streamConnection.close();
    display.setCurrent(textBox);
    public void pauseApp() {   }
    public void destroyApp(boolean unconditional) {  }
    /** This method initializes UI of the application.
    private void initialize() {                     
    getDisplay().setCurrent(get_Form1());
    * This method should return an instance of the display.
    public Display getDisplay() {                        
    return Display.getDisplay(this);
    * This method should exit the midlet.
    public void exitMIDlet() {                        
    getDisplay().setCurrent(null);
    destroyApp(true);
    notifyDestroyed();
    /** This method returns instance for Submit component and should be called instead of accessing Submit field directly.
    * @return Instance for Submit component
    public Command get_Submit() {
    if (Submit == null) {                     
    // Insert pre-init code here
    Submit = new Command("Submit", Command.OK, 1);
    // Insert post-init code here
    return Submit;
    /** This method returns instance for okCommand2 component and should be called instead of accessing okCommand2 field directly.
    * @return Instance for okCommand2 component
    public Command get_okCommand2() {
    if (okCommand2 == null) {                     
    // Insert pre-init code here
    okCommand2 = new Command("Ok", Command.OK, 1);
    // Insert post-init code here
    return okCommand2;
    /** This method returns instance for Submit1 component and should be called instead of accessing Submit1 field directly.
    * @return Instance for Submit1 component
    public Command get_Submit1() {
    if (Submit1 == null) {                      
    // Insert pre-init code here
    Submit1 = new Command("Submit", Command.OK, 1);
    // Insert post-init code here
    return Submit1;
    /** This method returns instance for Form1 component and should be called instead of accessing Form1 field directly.
    * @return Instance for Form1 component
    public Form get_Form1() {
    if (Form1 == null) {                     
    // Insert pre-init code here
    Form1 = new Form(null, new Item[] {get_stringItem1()});
    // Insert post-init code here
    return Form1;
    /** This method returns instance for stringItem1 component and should be called instead of accessing stringItem1 field directly.
    * @return Instance for stringItem1 component
    the code for the php script is:
    <?php
    $response = "Hello";
    if (isset($_GET)) {
    switch ($_GET["type"]) {
    case 1: $response = "Good Morning"; break;
    case 2: $response = "Good Afternoon"; break;
    case 3: $response = "Good Evening"; break;
    default: $response = "Hello"; break;
    echo $response;
    ?>
    I would be grateful for any reply
    Thank you in advance
    -Will

    sorry! i'll repost the code in code format
    * VisualMidlet.java
    * Created on 26 October 2007, 19:37
    import java.io.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    * @author Will
    public class VisualMidlet extends MIDlet{
    /** Creates a new instance of VisualMidlet */
    private Display display;
    private Command Submit;
    private Command okCommand2;
    private Command Submit1;
    private Form Form1;
    private StringItem stringItem1;
    String url = "http://people.bath.ac.uk/wal20/testGET.php?type=3";
    public VisualMidlet() {
    System.out.println("initialized");
    display = Display.getDisplay(this);
    Connect();
    public void startApp() {
    public void Connect(){
    try {getViaStreamConnection(url);}
    catch (IOException e) {
    System.out.println("IOException " + e);
    e.printStackTrace();
    public void getViaStreamConnection(String url) throws IOException {
    StreamConnection streamConnection = null; //declares a stream connection
    InputStream inputStream = null; // declares an input Stream
    StringBuffer b = new StringBuffer();
    TextBox textBox = null;
    try {
    System.out.println("Establishing stream");
    streamConnection = (StreamConnection)Connector.open(url);
    System.out.println("Stream established");
    inputStream = streamConnection.openInputStream();
    int ch;
    while((ch = inputStream.read()) != -1) {
    b.append((char) ch);
    textBox = new TextBox("Simple URL Fetch", b.toString(), 1024, 0);
    } finally {
    if(inputStream != null) {
    inputStream.close();
    if(streamConnection != null) {
    streamConnection.close();
    display.setCurrent(textBox);
    public void pauseApp() { }
    public void destroyApp(boolean unconditional) { }
    /** This method initializes UI of the application.
    private void initialize() {
    getDisplay().setCurrent(get_Form1());
    * This method should return an instance of the display.
    public Display getDisplay() {
    return Display.getDisplay(this);
    * This method should exit the midlet.
    public void exitMIDlet() {
    getDisplay().setCurrent(null);
    destroyApp(true);
    notifyDestroyed();
    /** This method returns instance for Submit component and should be called instead of accessing Submit field directly.
    * @return Instance for Submit component
    public Command get_Submit() {
    if (Submit == null) {
    // Insert pre-init code here
    Submit = new Command("Submit", Command.OK, 1);
    // Insert post-init code here
    return Submit;
    /** This method returns instance for okCommand2 component and should be called instead of accessing okCommand2 field directly.
    * @return Instance for okCommand2 component
    public Command get_okCommand2() {
    if (okCommand2 == null) {
    // Insert pre-init code here
    okCommand2 = new Command("Ok", Command.OK, 1);
    // Insert post-init code here
    return okCommand2;
    /** This method returns instance for Submit1 component and should be called instead of accessing Submit1 field directly.
    * @return Instance for Submit1 component
    public Command get_Submit1() {
    if (Submit1 == null) {
    // Insert pre-init code here
    Submit1 = new Command("Submit", Command.OK, 1);
    // Insert post-init code here
    return Submit1;
    /** This method returns instance for Form1 component and should be called instead of accessing Form1 field directly.
    * @return Instance for Form1 component
    public Form get_Form1() {
    if (Form1 == null) {
    // Insert pre-init code here
    Form1 = new Form(null, new Item[] {get_stringItem1()});
    // Insert post-init code here
    return Form1;
    /** This method returns instance for stringItem1 component and should be called instead of accessing stringItem1 field directly.
    * @return Instance for stringItem1 component
    }

  • I just tried to syncronise my iPhone, but it didn't work. HELP me please! does anyone knows what's wrong?

    I just got a new phone, I made a backup from my old one and tried to intsall the new.
    But it didn't work, is this a system default or is this my phone?

    Based on your incredibly detailed description of exactly what the chain of events was, including the exact text of all the error messages you received and what state the phone is in now, I'd say the problem is tied to the opposition of the Sun and Mars in the consellation Orion.
    Sacrifice a small woodland animal to the gods and make a pilgrimage to Stonehenge. That should take care of it.

  • Have a look an tell me what went wrong

    Ok so im creating a website and im basically using this for a
    CSS style for the background image:
    <style type="text/css">
    <!--
    body {
    background-image:url(images/background.jpg);
    background-attachment: fixed;
    background-color: #fff000;
    background-repeat:no-repeat
    The point of it is to stop the image from scrolling down with
    the text which does work, however, using photoshop CS3 ive created
    a gradiant background image (Which can be found
    Here
    and instead of making a huge background image on photoshop ive used
    the last bit of color in the gradiant (which is #fff000) to fill
    out the rest of the page, However the start of the gradiant itself
    in the image seens to be repating on the far right of the page. Ive
    racked my brains from 2am till 4am last night to fix this problem
    and no joy/ Even Joesph Lowery's book couldnt help me :( So i was
    wondering if anyone had any ideas for me?
    Here

    All that would do is to remove the
    background-attachment:fixed style from
    the picture. I'm not sensing that this is the desired
    result....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "JoeyD1978" <[email protected]> wrote in
    message
    news:gpj93v$lcc$[email protected]..
    > Just write it like this:
    >
    > body {
    > background: #fff000 url(images/background.jpg) no-repeat
    0 0;
    > }

  • Please Help:  Can't Access iTunes Store?  What is Wrong?

    Hi there - please help!
    Since downloading the latest iTunes update I get the following error message every time I click on my iTunes Store:
    'ITUNES COULD NOT CONNECT TO THE ITUNES STORE. THE NETWORK CONNECTION WAS REFUSED.
    MAKE SURE YOUR NETWORK SETTINGS ARE CORRECT AND YOUR CONNECTION IS ACTIVE, THEN TRY AGAIN'
    (Message in not in capitals, obviously)
    But.... my network settings are correct (I think - what does this mean?!) - and the connection works fine.
    What could be wrong? Has anyone else had this problem? And how would I fix it? Please advise - thank you!
    vaio   Windows XP  

    Are you running Norton Internet Security or anything similar? There have been reports that Norton and similar firewall products treat an upgrade as a new application and so you have to go in and reallow connections for iTunes. Check the settings and if necessary remove and re-enable the exception for iTunes (consult your privacy filter's documentation for the appropriate procedure). You may also need to check the built-in Windows firewall as well.
    Hope this helps.

  • Help!!!  don't know what's wrong with it

    I want to code a very simple chat program that whatever the client type, it will display in the server. Also, type in server will display in client. But code it but it doesn't work well. Below is the application I code, please help me to solve it. Thank you.
    import java.net.*;
    import java.io.*;
    public class ChatServer
         public static final int PORT = 8080;
         public static void main(String[] args) throws IOException
              ServerSocket s = new ServerSocket(PORT);
              System.out.println("Started: " + s);
              try
                   Socket socket = s.accept();
                   try
                        System.out.println("Connection accepted: " + socket);
                        BufferedReader in = new BufferedReader(
                                  new InputStreamReader(socket.getInputStream()));
                        PrintWriter out = new PrintWriter(
                                  new BufferedWriter(new OutputStreamWriter(
                                  socket.getOutputStream())), true);
                        DataInputStream stdIn = new DataInputStream(System.in);
                        String serverInput, clientInput;
                        while(true)
                             if ((serverInput = stdIn.readLine()) != null)
                                  out.println(serverInput);
                             if ((clientInput = in.readLine()) != null)
                                  System.out.println("Client: " + clientInput);
                                  out.println(clientInput);
                             if ((serverInput = stdIn.readLine()) == "end")
                                  break;
                   finally
                        System.out.println("closing......");
                        socket.close();
              finally
                   s.close();
    import java.net.*;
    import java.io.*;
    public class ChatClient
         public static void main(String[] args) throws IOException
              InetAddress addr = InetAddress.getByName(null);
              System.out.println("addr = " + addr);
              Socket socket = new Socket(addr, ChatServer.PORT);
              try
                   System.out.println("socket = " + socket);
                   BufferedReader in = new BufferedReader(
                             new InputStreamReader(socket.getInputStream()));
                   PrintWriter out = new PrintWriter(new BufferedWriter(
                             new OutputStreamWriter(socket.getOutputStream())), true);
                   DataInputStream stdIn = new DataInputStream(System.in);
                   String clientInput, serverInput;
                   while (true)
                        if ((clientInput = stdIn.readLine()) != null)
                             out.println(clientInput);
                        if ((serverInput = in.readLine()) != null)
                             System.out.println("Server: " + serverInput);
                             out.println(serverInput);
                        if (clientInput.equals("end"))
                             break;
              finally
                   System.out.println("closing..........");
                   socket.close();
    }

    Hi,
    Try my code... I make use of threads.
    // server.java
    import java.net.*;
    import java.io.*;
    public class server {
         PrintWriter pr;
         BufferedReader br;
         public server(int port) throws Exception {
              System.out.println("Type the following line on the client's side:\njava client " + InetAddress.getLocalHost().getHostAddress());
              try {
              ServerSocket ss = new ServerSocket(port);
              Socket s = ss.accept();
              System.out.println("Connection opened...");
              System.out.println("Type \"END\" to close the connection...");
              pr = new PrintWriter(new OutputStreamWriter(s.getOutputStream()), true);
              br = new BufferedReader(new InputStreamReader(s.getInputStream()));
              new writeThread().start();
              new readThread().start();
              } catch (IOException ioe) {
                   debug(ioe.toString());
         public static void main(String[] args) throws Exception {
              server s = new server(1688);
         static void debug(String s) {
              System.out.println(s);
         class writeThread extends Thread {
              public void run() {
                   String l;
                   while (true) {
                        try {
                             l = new BufferedReader(new InputStreamReader(System.in)).readLine();
                             if (l.equalsIgnoreCase("END")) {
                                  pr.println("END");
                                  System.exit(0);
                             } else {
                                  pr.println(l);
                        } catch (IOException e) {}
         class readThread extends Thread {
              public void run() {
                   String l;
                   while (true) {
                        try {
                             l = br.readLine();
                             if (l.equalsIgnoreCase("END")) {
                                  System.exit(0);
                             } else {
                                  System.out.println("Client: " + l);
                        } catch (IOException e) {}
    // client.java
    import java.net.*;
    import java.io.*;
    class client {
         PrintWriter pr;
         BufferedReader br;
         public client(String host, int port) {
              try {
              Socket s = new Socket(InetAddress.getByName(host), port);
              System.out.println("Connection opened...");
              System.out.println("Type \"END\" to close the connection...");
              pr = new PrintWriter(new OutputStreamWriter(s.getOutputStream()), true);
              br = new BufferedReader(new InputStreamReader(s.getInputStream()));
              new readThread().start();
              new writeThread().start();
              } catch (IOException ioe) {
                   debug(ioe.toString());
         public static void main(String[] args) {
              client c = new client(args[0], 1688);
         static void debug(String s) {
              System.out.println(s);
         class writeThread extends Thread {
              public void run() {
                   String l;
                   while (true) {
                        try {
                             l = new BufferedReader(new InputStreamReader(System.in)).readLine();
                             if (l.equalsIgnoreCase("END")) {
                                  pr.println("END");
                                  System.exit(0);
                             } else {
                                  pr.println(l);
                        } catch (IOException e) {}
         class readThread extends Thread {
              public void run() {
                   String l;
                   while (true) {
                        try {
                             l = br.readLine();
                             if (l.equalsIgnoreCase("END")) {
                                  System.exit(0);
                             } else {
                                  System.out.println("Server: " + l);
                        } catch (IOException e) {}

  • Help my iPhone 3GS randomly shuts down, what is wrong?, Help my iPhone 3GS randomly shuts down, what is wrong?

    My iPhone 3GS randomly shuts down for no reason, and apparently I am not the only person having a problem with this. This happens regardless of how much battery life my phone shows, or whichever application I am using. IS THERE A FIX FOR THIS!!!!!!! I understand that cell phones are not built to last forever, but my phone is in to good of a condition to go out and purchase a new one.

    Before you get your knickers all in a twist, try the basic troubleshooting steps Apple recommends:
    Basic troubleshooting steps clearly outlined in the User Guide are restart, reset, restore from backup, restore as new device.
    If you have been through ALL of the troubleshooting steps and you're still having problems, then you'll need to bring your phone to Apple for investigation.

  • I'm trying to Ignore a file header when reading a file, but no succes?? Take a look.... please...

    I posted the question in another forum,
    Take a look at my VI,
    What is wrong
    I'm trying to ignore the Header sekvens, (the first line) when reading the data to a chart.
    but ts noyt working,, did i missed something!?
    Zamzam
    HFZ
    Attachments:
    ReadDataFile11.vi ‏87 KB

    Hi again HFZ,
    The "read file" function has an option called "line mode" which is False by default, if you link a TRUE instead, you will only read one line of your file, you can then play with the offset in a while loop to read lines until the end of the file.
    But it might be even easier to read the whole file (with line mode False) then do a "spreadsheet string to array" (look in arra palette) and then remove the first line.
    I'm sorry I don't have time to have a look/modify your VI... On top of that you'll get much more satisfaction if you get through that yourself
    have fun !
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • Step by step to use IIS to serve JSP, what's wrong?

    I am a total newbie in IT but I need to use IIS to serve a Jsp application.
    I put on my step by step procedure (images) on my webpages. Will some kind souls please take a look and tell me what went wrong.
    Thank you.
    URL : http://www.geocities.com/i_am_diablo2000/iis.html

    If you follow what I put up in my webpage, you should be able to get the re-direct work.
    However, that is not my ultimate goal.
    I thought I will be able to setup IIS to serve a Jsp application without starting the Tomcat. But that didn't happen. I still need to run Tomcat, in order to get the Jsp application running properly.
    Is there a way to start Servlet Engine without the Tomcat webserver?
    Help.

  • What's Wrong? My iPad Lost it's Yellow Tint!

    My new iPad never really had a yellow tint. The display, though, was obviously warmer in tone than my iPad 2, and the warmth was across the entire display, not just part of it.
    Space around text was, in particular, whiter on the iPad 2, and the text seemed to be darker - more contrasty. I had to call my wife over to take a look and she confirmed what I was seeing, when the two iPads were side-by-side.
    As others have noted, if the two iPads were not compared side-by-side, the new one looked fine. Put them together, and the difference was very apparent.
    However, having read from several posters that it's an issue with glue, I decided not to panic. Last night, I spent a few hours with the new iPad on the Web, reading people's comments, and then browsing the topic of color - how we see, Edwin Land's ideas about color perception being based on context, etc. It made for interesting, if not hard-going reading.
    Just before I went to bed, I did a last comparison check. I discoverd, to my amazement, that my new iPad's display had lost most of its warm tint over the past few hours. As far as I can tell, it's now totally gone. When I compare it to my iPad 2, the new iPad still looks warmer, but only in comparison.
    Now the iPad 2 has a bluish cast to my eyes, especially when I'm looking at a page with black text and white space - the white is blue. With photos, the difference is down to a slight saturation gain with the new iPad. And the retina display increases sharpness just enough to make some photographs, along with their increased saturation, appear to be 3D.
    I have a feeling this problem of tint/color will resolve itself for most people, one way or the other. For those who can relax for a few days, they might find, as I did, that the yellow will disappear. Or they might trade in their iPads, but there's no guarantee, if they get an iPad fresh off the boat, that it won't have the same problem, at least for a few days.

    That's good to hear that the "Yellow tint" has sorted it self out.
    Maybe the "Heat" issues that that people have with the batteries will sort it self out after a few discharge - recharge cycles.

  • Can someone please tell me what's wrong with the Inside of my iPad Charger? *Picture Included

    It won't charge my iPad. So I wanted to take a good look inside and see what's wrong with it. But I don't know anything about these wires. Here's the Pic of it.
    http://oi39.tinypic.com/2ed5yl2.jpg
    http://oi42.tinypic.com/5btptt.jpg
    http://oi39.tinypic.com/ih8rq1.jpg
    PLEASE HELP. It would be a Big Help

    That's unfortunate, because it would appear that the cable is pretty much toast. If it wasn't before, it pretty much is now that you've cracked it open.
    Either borrow one, or bite the bullet and buy one locally. You're not getting anywhere with that one.

  • What is wrong with my nokia e72!!!???

    Hi I recently purchased the e72 it's really nice but it has so many problems! I am clueless on what to do! Can anyone help me please!
    1) My phone dose not upgrade each time it says it failed to install.
    2) When I select the ovi store application on my phone it just does not work.
    3) I go on the ovi store online and I try to download apps it either says the certificate I am getting is too old but I still accept it. And when I do accept to download it just fails.
    4) The gps is just not working every time I connect it to my pc it gives me this error saying i have to disconnect my phone enter maps quit maps and then connect my phone to the computer again. But it keeps giving me the same error and asking me to repeat the steps.
    5) And every time I try to do anything regarding nokia it keeps saying it is giving me a certificate that is out of date.
    Can someone please help me I really don’t know what is wrong with my phone I haven’t done anything to it it's the first time this has happened to me with any nokia device.

    Right on!! Am enjoying my Lumia 900 and looking foward to a 920 later on this year! I find the windowsphone os quick, clean & easy to use and the multi size live tiles ( 7.8 ) make the interface way more innovative & attractive than the dreary grid of icons of the bloated android & overpriced and overrated Ios! although I buy my phones for my own use & satisfaction whenever I use it in company the appearance always brings interest & positive comment. Windowsphone is a "young" os and will hopefully go on to get smarter & better. Yes the tight control that microsoft keep over it causes a few limitations - but if u can't live with that don't buy it! Presumably anyone buying a top range smartphone does at least a little research first! Personally im happy that there's no danger of my handset being killed by a virus, I bought a windowsphone coz having looked around - thats what I wanted and the only handset i'll swap my 900 for will be a 920!!

Maybe you are looking for