Monday, July 27, 2009

Core Java Doubts?

1. what is the impact of private constructor?


2. what r static initializers?


3. can we assign parent objects to child objects?


4. what r singleton classes?


5. can applets be embedded in any graphical java application?


6. in use of applets having main() ?


7. how is the template concept of C++ implemented in Java?


8. can main() have only void as its return type?





plz answer them with the ques nos.

Core Java Doubts?
1. Instances of the class with only private constructors can only be created from within that class itself.





2. Static initializer is a piece of code enclosed in static { } that is executed when the class is loaded (referenced) for the first time.





3. No, you can't assign parent objects to child objects. Parent objects are not compatible with child objects and may not have all required methods/variables.





4. Singleton class is the class that only allows existense of one and only instance of itself.





5. Applets can be embedded into web browser and viewed in applet viewer - yes. Any graphical Java application - no.





6. Didn't get this question. Applets don't normally have main() method - they have init() method which performs similar function.





7. Semantics of templates in Java are almost the same as as in C++. Templates are classes that know how to deal with other classes, without knowing their specifics. Templates in Java are mostly intended to avoid clumsiness of typecasts.





8. Yes, main() can only be void if you want it to be program's entry point. If you make it not void, Java just won't recognize it as entry point function.
Reply:adding to the above answer:





1. See this for explanation


http://www.javapractices.com/topic/Topic...





6. You can have a main() method in an applet. It would imply that you plan to run your program an application as well.





7. It is implemented via "generics" introduced with Java 5


http://java.sun.com/j2se/1.5/pdf/generic...

land survey

More Java help please.?

Account


-balance: double


+getBalance(): double


+charge(sale: double): void


+makePayment(payment: double) : void


+printStatement(): void


+Account()





a. Use the class above to write a few lines of code that will create a new


account, with a zero balance (this is what the default constructor will do).


b. Charge three sales to your account created in a) for $25.13, $43.98, and


$5.00.


c. Make a $50 payment to your account in a).


d. Print out a statement for your account in a) if the account has a balance of


over $1.

More Java help please.?
do it yourself. And shame on people who just post code for people who want someone else to do their homework. Show some honor.
Reply:OK, I'll do it for you because I don't have anything better to do, but I want you to read and understand the code:





class Account


{


double balance;


double getBalance()


{


return balance;


}


void charge (double sale)


{


balance=balance+sale;


}


void makePayment(double payment)


{


balance=balance-payment;


}


void printStatement()


{


System.out.println("STATEMENT:


\n*balance="+


balance+"\n---------------");


}


Account()


{


balance=0;


}


}





public class BalanceAccount


{


public static void main(String [] args)


{


Account Acc=new Account();


Acc.charge(25.13);


Acc.charge(43.98);


Acc.charge( 5.00);


Acc.makePayment(50);


if(Acc.getBalance()%26gt;1)


Acc.printStatement();


else


System.out.println("


balance%26lt;=1");


}


}
Reply:first one's free... all orders for homework help are $39.99 per answer...





Try reading through the book some, might help understand basics of Java like: void, constructor or even double. Then doing it yourself would be quick n easy.


Any pro java programmer i need your help?

why when i add private int yearpublished; my program has an error why it's, it has no error when i add a new String data type the problem is when i add a int data type








// to run this program: C%26gt;java libmainsys


//////////////////////////////////////...





/////////


class libary


{


private String booktitle;


private String bookauthor;


private String publisher;


private int yearpublished;


private int nofcop;





public libary(String title, String author, String





pub, int yrpub, int nfcp)


{ // constructor


booktitle = title;


bookauthor = author;


publisher = pub;


yearpublished = yrpub


nofcop = nfcp;


}





public void displaylibary()


{


System.out.print(" Book Title: " + booktitle);


System.out.print(", Book Author: " + bookauthor);


System.out.print(", Book Publisher: " + publisher);


System.out.print(", Year Published: " +





yearpublish);





System.out.println(",No Of Copies : " + nofcop);


}

Any pro java programmer i need your help?
Your problem is not on the "int" type but on the "insert" parameter to your array!


You gave there insert(String, String, String, String , int) but your class has constructor supports only (String, String, String, int, int)... So the last "String" argument on your insert should be without quotes (an "int" value).





Edit:





for example:


arr.insert("Web_Publishing", "Audrey_Cynthia", "Surg", "193", 2001);





should be





arr.insert("Web_Publishing", "Audrey_Cynthia", "Surg", 193, 2001);


this is according to the definition of your insert method. I hope you see the diference between the 2 examples.


Why am I getting this class error in Flash when including "NetServices.as"?

I am working on a Flash Remoting project (Flash 8, btw). When I check for script errors, the output panel, I get this response:





"**Error** C:\CFusionMX7\wwwroot\Configuration\NetS... Line 22: Classes may only be defined in external ActionScript 2.0 class scripts.


class mx.remoting.NetServices extends Object "





I thought this NetServices file WAS an external class constructor...but I'm newbie and obviously am missing something here. Probably better to post this on a Flash forum, which I think I'll do, but any help here would be appreciated.

Why am I getting this class error in Flash when including "NetServices.as"?
The code fragment:


"class mx.remoting.NetServices extends Object "


declares a new class which, as far as I can understand, is not what you want to do because NetServices already exists as a compiled object in the Flash library.





If you want to use this class what you need to do is import it by using the following code:





import mx.remoting.NetServices;





then you can create an instance of the class by typing something like:





var myServices:NetServices = new Netservices();





The variable myServices is then an "Instance" of the class Netservices and you can then use it whatever you want to do with this Class





Please be advised this is general advise and I do not know this particular Class. this is just the way classes and OOP works in Flash.





I hope this helps you
Reply:This might help:





Runtime Errors and others:


http://support.microsoft.com/default.asp...





Good Luck


Complicated java programming need help badly?

1. (5)Create a class called Grocery that has three private attributes price (double), quantity(int) and catcode (string).


2. (5)Create a constructor for the abovementioned class that initializes the data members to zero values, and catcode to “N”


3. (30)Create accessor and mutator methods for the class. Make sure that


a. price attribute can not be assigned a negative value. In case of such an error, the default value is 0.00


b. quantity attribute can not be assigned a negative value. In case of such an error, the default value is 0


c. catcode attribute can not be assigned a value other than “N”,”F”,”Z”. In case of such an error, the default value is “N”


4. (5)Create a method called inputprice() that receives no parameters and returns no value. Using JOptionPane class it asks the user to input a price and uses setprice() method to set the value for the data member price.





all i need help with is number 4





import javax.swing.JOptionPane;


public class grocery


{ private....

Complicated java programming need help badly?
public void inputprice()


{


double price;


string input;


input = JOptionPane.showInputDialog("Enter the price:");


price=Double.parseDouble(input);


setprice(price);


}





I think that should be it

survey software

1. Specify, design, and implement a class that can be used in a program that simulates a combination lock.?

The lock has a circular knob, with the numbers 0 through 39 marked on the edge, and it has a three-number combination, which we’ll call x , y, z. To open the lock, you must turn the knob clockwise at least one entire revolution, stopping with x at the top; then turn the knob counter-clockwise, stopping the second time that y appears on top; finally turn the knob clockwise again, stopping the next time that z appears at the top. At this point, you may open the lock.


Your Lock class should have a constructor that initializes the three-number combination. Also provide methods:


a. To alter the lock’s combination to a new three-number combination.


b. To turn the knob in a given direction until a specified number appears at the top.


c. To close the lock.


d. To attempt to open the lock.


e. To inquire the status of the lock (open or shut).


f. To tell what number is currently at the top.

1. Specify, design, and implement a class that can be used in a program that simulates a combination lock.?
Take a look here at wikipedia. So you can do your homework:








http://en.wikipedia.org/wiki/Combination...


1. Specify, design, and implement a class that can be used in a program that simulates a combination lock.?

The lock has a circular knob, with the numbers 0 through 39 marked on the edge, and it has a three-number combination, which we’ll call x , y, z. To open the lock, you must turn the knob clockwise at least one entire revolution, stopping with x at the top; then turn the knob counter-clockwise, stopping the second time that y appears on top; finally turn the knob clockwise again, stopping the next time that z appears at the top. At this point, you may open the lock.


Your Lock class should have a constructor that initializes the three-number combination. Also provide methods:


a. To alter the lock’s combination to a new three-number combination.


b. To turn the knob in a given direction until a specified number appears at the top.


c. To close the lock.


d. To attempt to open the lock.


e. To inquire the status of the lock (open or shut).


f. To tell what number is currently at the top.

1. Specify, design, and implement a class that can be used in a program that simulates a combination lock.?
Take a look here at wikipedia. So you can do your homework:








http://en.wikipedia.org/wiki/Combination...


Programming Help?

public class StringStuff{


String myString;


/**


*This constructor sets the instance variable equal to my name.


*/


public void StringStuff(){


myString = "Jacob";


}





/**


*This method accepts a String as a parameter and prints to the screen whether or not it contains more characters than your instance variable. Nothing is returned.


*/


public void whichIsLonger(String s){


int x=s.length();


int y=myString.length();


if (x%26gt;y){


System.out.println("The String s contains more letters than myString.");


}


else{


System.out.println("The string s does not contain more letters than myString.");


}


}


/**


*This method prints the second to last character in it to the screen.


*/


public void secondToLast(){


int z=myString.length();


z=z-2;


char c=myString.charAt(z);


System.out.println(c);


}


public static void main(String[]args){


StringStuff e = new StringStuff();


e,whichIsLonger("Ferret");


e.secondToLast();


}

Programming Help?
/**


*This constructor sets the instance variable equal to my name.


*/


public void StringStuff(){


myString = "Jacob";


}








This is not a constructor. This is just an ordinary method that happens to have the same name as the class. Thus, it won't be called when you say new StringStuff().





A constructor must not have a return type. Remove void.


Should be:


public StringStuff(){


myString = "Jacob";


}





Hope this helps.


10 points if you manage to change this Insertion sort to Bubble sort?

/ objectSort.java


// demonstrates sorting objects (uses insertion sort)


// to run this program: C%26gt;java libmainsys


//////////////////////////////////////...


class libary


{


private String booktitle;


private String bookauthor;


private String publisher;





private int nofcop;





public libary(String title, String author, String pub, int nfcp)


{ // constructor


booktitle = title;


bookauthor = author;


publisher = pub;





nofcop = nfcp;


}





public void displaylibary()


{


System.out.print(" Book Title: " + booktitle);


System.out.print(", Book Author: " + bookauthor);


System.out.print(", Book Publisher: " + publisher);





System.out.println(",No Of Copies : " + nofcop);


}





ublic String getLast() // get title


{ return booktitle; }


} // end class libary





class ArrayInOb


{


private libary[] nfcp; // ref to array ypub


private int nElems; // number of data items

10 points if you manage to change this Insertion sort to Bubble sort?
That's not a question - that's a request to completely rewrite a chunk of code from scratch. You're unlikely to get any response here... especially as this is so obviously a piece of homework...





p.s. Someone always gets 10 points, even if you don't offer them up as some kind of "special reward". This could be considered "point-gaming".

survey research

1. Specify, design, and implement a class that can be used in a program that simulates a combination lock.?

The lock has a circular knob, with the numbers 0 through 39 marked on the edge, and it has a three-number combination, which we’ll call x , y, z. To open the lock, you must turn the knob clockwise at least one entire revolution, stopping with x at the top; then turn the knob counter-clockwise, stopping the second time that y appears on top; finally turn the knob clockwise again, stopping the next time that z appears at the top. At this point, you may open the lock.


Your Lock class should have a constructor that initializes the three-number combination. Also provide methods:


a. To alter the lock’s combination to a new three-number combination.


b. To turn the knob in a given direction until a specified number appears at the top.


c. To close the lock.


d. To attempt to open the lock.


e. To inquire the status of the lock (open or shut).


f. To tell what number is currently at the top.

1. Specify, design, and implement a class that can be used in a program that simulates a combination lock.?
Take a time to read this and try to do it.





http://en.wikipedia.org/wiki/Combination...


Java compiler error question?

Assume that the class Pop is a subclass of the


class Drink. Assume that each class has a


constructor that takes a single String argument.


Which ONE of the following code segments


generates a compiler ERROR:


a.


Pop aPop;


Drink aDrink;


aDrink = new Pop("Coke");


b.


Pop aPop;


Drink aDrink;


aPop = new Pop("Orange Juice");


c.


Pop aPop;


Drink aDrink;


aDrink = new Drink("Pop");


d.


Pop aPop;


Drink aDrink;


aPop = new Drink("Coke");

Java compiler error question?
d will give compiler error. A subclass can assume the role of a parent class but not the other way round.
Reply:may be A.


cos parent class can't look into child class


Is there a proper way to repaint when a window is minimized?

language: c#





is there just a simple way to have the screen repaint?


i have a class that is a couple hundred lines long which is painting to the form that called it. now, i could have it use similiar code to recalculate how everything should be each time the window changes. ...but there are a LOT of calculations that have to be done.





i dont know if what i am doing now is the right way to do things. i have about 20 global variables that i initialize in the classes constructor. then I use those variables in a method called paint(). ...but there is still a lot of calculations that need to be done and i just get the feeling that this cant be the right way to do this.





do you have any ideas or could you guide me towards the conventional way to do this? ...i have looked at at least 900,000 tutorials today and they arent really helping.

Is there a proper way to repaint when a window is minimized?
Out of my mind, there is a way you can do it if you are using C# or any other .NET language. If your painting and calculation code is in paint method, then you just need to force the form to redraw itself each time its visibility changes. On the Activate event of the form, just call this method.


this.Invalidate();


This method will cause the form to redraw itself.
Reply:Ahhh, things are so simple in VB..... From.AutoRedraw = True





Hope the link below helps:





http://msdn2.microsoft.com/en-us/library...
Reply:its best to do the calculations and get an exact. if you half *** and mess up then all the work will be wasted
Reply:...... Sorry but, openGl, SDL, Directx? Windows, linux, Mac?


if (eventfromOS != 0) ?


All will give you something to work with if the window changes


10 points if you manage to change this Insertion sort to bubble sort?

// objectSort.java


// demonstrates sorting objects (uses insertion sort)


// to run this program: C%26gt;java ObjectSortApp


//////////////////////////////////////...


class Person


{


private String lastName;


private String firstName;


private int age;


//--------------------------------------...


public Person(String last, String first, int a)


{ // constructor


lastName = last;


firstName = first;


age = a;


}


//--------------------------------------...


public void displayPerson()


{


System.out.print(" Last name: " + lastName);


System.out.print(", First name: " + firstName);


System.out.println(", Age: " + age);


}


//--------------------------------------...


public String getLast() // get last name


{ return lastName; }


} // end class Person


//////////////////////////////////////...

10 points if you manage to change this Insertion sort to bubble sort?
Bubble sort really shouldn't be all that hard...have you done any research on this besides asking on Yahoo Answers?





Here's my suggestion. You're going to need to adapt it to your specific program. Disclaimer: I wrote this without any testing, much less debugging.





//====================


public void bubbleSort(Person [] personArray) {


boolean sortsPerformed = true;


while (sortsPerformed == true)


{


for (int i = 0; i %26lt; getArraySize(personArray) ; i++)


{


sortsPerformed = false;


if ( personArray[i].getLastName() %26gt; personArray[i+1].getLastName() )


{


swap (personArray, i, i+1)


sortsPerformed = true;


}


}


}


}


//===================





I leave it to you to write the appropriate functions or modify the code as necessary to make it fit into your program. Good luck!
Reply:Before sorting:


Last name: Evans, First name: Patty, Age: 24


Last name: Smith, First name: Doc, Age: 59


Last name: Smith, First name: Lorraine, Age: 37


Last name: Smith, First name: Paul, Age: 37


Last name: Yee, First name: Tom, Age: 43


Last name: Hashimoto, First name: Sato, Age: 21


Last name: Stimson, First name: Henry, Age: 29


Last name: Velasquez, First name: Jose, Age: 72


Last name: Vang, First name: Minh, Age: 22


Last name: Creswell, First name: Lucinda, Age: 18





After sorting:


Last name: Creswell, First name: Lucinda, Age: 18


Last name: Evans, First name: Patty, Age: 24


Last name: Hashimoto, First name: Sato, Age: 21


Last name: Smith, First name: Doc, Age: 59


Last name: Smith, First name: Lorraine, Age: 37


Last name: Smith, First name: Paul, Age: 37


Last name: Stimson, First name: Henry, Age: 29


Last name: Vang, First name: Minh, Age: 22


Last name: Velasquez, First name: Jose, Age: 72


Last name: Yee, First name: Tom, Age: 43Lexicographical Comparisons
Reply:you know, i didn't have the yahoo answers for a resource when i was taking programing classes. nor did i stoop to attempting to get other people to do my homework. i am sure that if you apply your professors lessons that you will find the solution.
Reply:What in the word Is this stuff I do not under-stand this it is very weird

survey for money

Please help with this java code.?

Array Assignment





1. Using JOptionPane.showInputDialog method, ask the user to please enter an integer. The integer will represent the size of the array


2. Use the integer as a parameter to the constructor to create an integer array of size equal to the user input from 1.


3. Code a fill() method that will populate the array with random integers in the range 100 to 199. Using either


a. Math.random() or


b. The Random class and one of its methods


4. Code a method that will return the sum of the integers in the array


public long sum()


5. Code a method that will return the average of the integers in the array.


float average(…)


Make sure your average method calls the sum method


6. Code a method that will return the largest integer in the array


int max()


7. Code a method that will return the smallest integer in the array


int min()


8. Code a method that returns a copy of the array in reverse order


int[] reverse()


9. Code an evens method that returns the number of even integers in the array


int evens()


10. Code a method toString() that returns a string contains the contents of the array in a user friendly output


String toString()


11. Code a method searchInt(int x) that returns the number of times the integer x appears in the array . Ask the user for the search integer


int searchInt(int x)


12. Display, using the JOptionPane.showMessageDialog method,


a Your calculations, min, max sum , the size of the array


c. the array itself using the toString(), return value from the copyReverse method (reverse order) , number of even integers and the result from the search Int





Please comment using javadoc utility





Implement a class MyArray. Your class MyArray should include methods. The following methods which may or (may not ) need parameters or return values


1. fill() // fill the array


2. getSize() // return the size of the array


3. reverse() // return an array that is a copy of the array in reverse order


4. MyArray(int x) // constructor


5. sum(), max() min()


6. evens() average() (return a float and call sum() )


7. searchInt(int x)

Please help with this java code.?
It sounds like you need more interactive help than a forum can provide.
Reply:You have stated almost every function that you need. You simply need to put it together.





Try looking up tutuorials for each part. For example, to ask for an integer look for Java I/O (Input/Output). It's very simple, and you won't find many people who would be willing to put this code together for you.
Reply:That is going to be quite difficult. If you are still stuck with your project assignment may be you can contact a java expert live at website like http://askexpert.info/ .


). which of the following is TRUE?

a)In java, an instance field declared public generates a compilation error.


b)int is the name of a class available in the package java.lang


c)Instance variable names may only contain letters and digits.


d)A class has always a constructor.


e)The more comments in a program, the faster the program runs.

). which of the following is TRUE?
I think c is true becuse a varible name can not contain any thing other than lettera and digit if you add _ in letters.


But a class may not have constructor when default constructor will be used.
Reply:D is True.
Reply:D.


Help me using netbeans..!!?

Define a class named WaterTank which would represent a typical cylindrical water tank. The


class should contain two properties:





description - stores the description of the tank.


diameter - stores the measurement of the tank’s diameter.


height - stores the measurement of the tank’s height.





a. Write at least two (2) constructor methods for the class.


b. Provide getter and setter methods for each data members.


c. Write a method named getArea( ) which returns the area of the tank.


d. Write a method getWaterVolume(double waterHeight) which returns the volume of water


inside the tank given height of the water inside the tank.


f. Write a method named getMaximumCapacity( ) which would return the maximum volume of


water (capacity) that the tank can hold.


e. Override both the toString( ) and equals( ) methods that are inherited from the Object class.

Help me using netbeans..!!?
This seems like a relatively easy program to construct, why would you need netbeans?





If you're referring to the UI i'd recommend eclipse (or notepad if you don't want to learn a new program).





If you really want to pursue netbeans perhaps take a look at www.java-tips.org


Java compiler error ?

/**


* models the player in a game of RPS


*/


public class RockpaPaperScissors {


private int playerChoice; //ROCK = 1, PAPER = 2, SCISSORS = 3








//constructor





public Player() {


playerChoice = 1;


}








public void setChoice(int newChoice){


playerChoice = newChoice;


}








public int getChoice() {


return(Player);


}





}





What wrong ?





It tells me





1 error found:


File: C:\Documents and Settings\Dulitha.DULITHA-668FD42\RockpaP... [line: 10]


Error: C:\Documents and Settings\Dulitha.DULITHA-668FD42\RockpaP... invalid method declaration; return type required

Java compiler error ?
If you declare constructor, it should have the same name as your class:





public RockpaPaperScissors() {


playerChoice = 1;


}





also, your getChoice() method doesn't make any sense. Perhaps you meant this:





public int getChoice() {


return playerChoice;


}
Reply:your constructor should have the same name as of class like


public RockpaPaperScissors() {


//youe code here


}





and the method


public Player() {


playerChoice = 1;


}





should be like


public int Player() {


playerChoice = 1;


}





try with the changes mentioned. it'll work for sure

survey questions

Dynamically allocate memory to four instantces pointing to a?

I need some help figuring what I should do when I dynamically allocate memory to four instantces pointing to an animal class. After I allocate memory in the constructor, I must set it to "Lion", "Cat", "Dog", "Monkey". So far this is what I have written. Feedback would be great! The following code runs, however, I think I am not setting it correctly. I not quite sure?


//Animal.h


class Animal


{


private:


Animal *L;


Animal *C;


Animal *D;


Animal *M;





};


//Animal.cpp


Animal::Animal()


{


Animal *L = new Animal;


Animal *C = new Animal;


Animal *D = new Animal;


Animal *M = new Animal;


}

Dynamically allocate memory to four instantces pointing to a?
do you make a website on cs3?
Reply:Your animal class definition does not look right. Why does it have 4 animal pointers?


Hello, can any body help me>>>>>>>>>>>>>>>>>?

i want to define class named Sequence for storing list of strings.


a. Define and implement a constructor, a destructor, and the following member functions for Sequence:


b. Insert, which inserts a new string into its sort position using a pointer to the list.


c. Delete, which deletes an existing string using a pointer to the list.


d. Find, which searches the sequence for a given string and returns true if it finds it, and false otherwise, using pointer to the list.


e. Print, which prints the sequence strings using pointer to the list.





plz,,,, znswer me








programme with c++

Hello, can any body help me%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;%26gt;?
class Sequence {





};


May be you can contact a C++ expert at websites like http://askexpert.info/ to help you code it.


What to do if a program does not recognize String Tokenizer?

Everytime I try to run the following Java program it says "No match found for constructor String Tokenizer (java.lang.string)"...What should I do? I dont think the code is wrong itself...





// The "StringTokenizer" class.


import java.io.*;


import java.util.*;


import hsa.Console;





public class StringTokenizer


{


static Console c; // The output console





public static void main (String [] args) throws IOException


{


c = new Console ();


BufferedReader script;


PrintWriter censor;


script = new BufferedReader (new FileReader ("a.txt"));


censor = new PrintWriter (new FileWriter ("b.txt"));


String word;


while (true)


{


String line = script.readLine ();


if (line == null)


break;


StringTokenizer words = new StringTokenizer (line);


while (words.hasMoreTokens ())





{


word = words.nextToken ();


if (word.length () == 4)


{


censor.println (word);


}


}


}


script.close ();


censor.close ();

What to do if a program does not recognize String Tokenizer?
um, you don't have a constructor, like the error says.





The constructor of a class should is a method with the same name as the class and it is called to instantiate an object of that class.





this line: StringTokenizer words = new StringTokenizer (line);


you need to define what StringTokenizer(String s) is.


Consider the following class definition for a binary tree of integers.?

Consider the following class definition for a binary tree of integers.


class binTree {


public:


btnode* root; // root of the bintree


btnode* current; // current node in the bintree


binTree();


bool isEmpty();


int CountInterior(); //count the number of interior nodes


};


class btnode {


friend binTree;


int value;


binTree left; // left subtree


binTree right; // right subtree





public:


btnode(int value); // Constructor


bool isLeaf(); // True if this node is a leaf; false otherwise


};





Complete the C++ code for a recursive method called CountInterior that returns the number of interior (non-leaf) nodes in a binary tree.





int bintree::CountInterior()


{


}

Consider the following class definition for a binary tree of integers.?
Okay, I considered it. Now what? Seriously, this looks like homework to me, and easy homework at that. The given code lays out a way to test for leaves so all you need to do is use it in a loop and increment a counter if appropriate. The most difficult thing here is setting up a loop to walk the WHOLE tree. That's about all the help I'll give you.

surveys

Can any one give me a few reasons why dont they beleive this????

Loose change video


1.he showed that the bombs were inside the buildings through the videos


2.He interviewed the fireworkers inside the bulidings and they claimed to have said that the bombs were inside the building


3.the constructor of the building claimed that the metal used for the building could withstand temperature upto 3000 C for a few hours but the metal melt at around 1500 C.............etc


people i jus want to know the resons u dont beleive it i dont want to hurt anyones sentiments.these are the facts i want ur opinion

Can any one give me a few reasons why dont they beleive this????
all I know is that there's a hotel in Madrid where it burned for 28 hours had the same metal components and didn't fall, no impact of a plane, but then again, the impact from a plane would only effect a tower on impact not after.
Reply:haha I went 0-6 with the thumbs too, and I'm an OIF vet too. Report It

Reply:What melted? Are you referring to the world trade center? if so, i think there's a good documentary on what happened architecturally, but I don't remember the name of it! Anyway, the short of that tragedy was that the planes knocked the insulation off the beams that caused them to give way at lower temps and brought it down.
Reply:Melt: to become liquefied by warmth or heat; to become liquid.





The steel didn't MELT, it was weakened by the heat.





People can continuously try to pull sources out of thin air, but it is your responsibility to double-check those sources. Do you have any idea how many people would be willing to pose as a fireman, and say they were in the building before it collapsed... Take that Jesse Macbeth scum bag that said he was a soldier in Iraq, and that he 'witnessed' horrible crimes done to Iraqi civilians when in fact, he never graduated BCT.
Reply:Because in real life the steel if unprotected could fail, and even if the temp is withstood, the explosive force has to be considered.
Reply:My opinion is that you are a complete moron. The buildings were hit by 2 planes flown by Muslim terrorists.
Reply:Another Conspiracy Theory related rant about 9/11!!!!





He claims the explosions caused by the jets going into the building seconds before the collapse are demo charges going off, but its all old news and crap with NO proof.





what the F is a "fireworker" the buildings were on fire from the jets before the firemen arrived on the scene i.e. the ground floor, so what good is that as a eye witness who arrived after the event??
Reply:The biggest reason I cannot believe the 'Loose Change' video is because of the fact that placing demolition charges as described would have required several weeks of work, the removal of interior walls and obvious placement of explosives, det cord and your detonation trains.





Can you explain how anybody could have done this without the occupants of the building noticing?





BTW, if explosives were used - how do you explain the absence of the distinctive colored smoke produced by explosives?
Reply:An IQ over 80 is required to understand the physics of why the building fell.





Resign yourself to the fact that you will never get it.
Reply:What the "F" are you talking about??? Maybe if you could set this up in english, we would have a clue as to what you are wanting our opinion on.
Reply:Why would you believe rumor, hearsay and a home-made grainy blurry video and some clown's opinions.





Just ask the architects who built the building and world-renowned explosive experts, and they will tell you, as they have told the world, that the explosives theory is utter nonsense.





I think people with vast experience and intelligence have more credibility than some joker on YouTube.
Reply:It's truly sad that people believe the LooseChange nonsense.


There were no bombs or explosives in the buildings. Think about it. If you have ever watched a building demolition, you will notice that to plant the explosives they have to tear out every single interior wall so they can get to the metal and concrete skeleton. Out of 250,000 people that worked at the WTC, not 1 ever saw anybody tear the walls open and plant explosives. If you watch a demolition, you will see there there are miles upon miles of detonation cables running through the building to set off the explosives in a very specific order. Out of 250,000 employees, not 1 ever saw a single detonation cord in the buildings.





If you are not smart enough to see the utter nonsense of LooseChange, then you have bigger problems than a government conspiracy.


How to write a program in Java with imaginary numbers, I have no idea where to start.?

the problem, Create a class called Complex for performing arithmetic with complex numbers complex number have the form


realPart + imaginaryPart 8 i


where i is the square root of -1.


write a program to test your class. Use floating point variables to represent the private data of the class. Provide a constructor the enables an object of this class to be initialized when it is declared.


Provide a no argument constructor with default values in case no initalizers are provided. Provide public methods that perform the following operations:


a)add two complex numbers


b)Subtract two complex numbers


c) print complex numbers in the form (a,b) where (a) is the real part and (b) is the imaginary part.





Any help is GREATLY appreciated.

How to write a program in Java with imaginary numbers, I have no idea where to start.?
Fairly straight forward. The code below is the skeletal C++ code (since I am not familiar with Java).





class Complex {


public:


Complex () {a = 0; b = 0;}


Complex (float x, float y) { a = x; b = y;}


float real () {return a;}


float imaginary () {return b;}


void Add (Complex c, Complex d) { a = c.real() + d.real();


b = c.imaginary() + d.imaginary();}


void Subtract (Complex c, Complex d) {....}


void Print() { cout %26lt;%26lt; a %26lt;%26lt; "+ i" %26lt;%26lt; b; }


private:


float a;


float b;


};
Reply:do a search for java script calculators


Design, implement and test a class Poly for polynomials. A polynomial has the form anxn?

Design, implement and test a class Poly for polynomials. A polynomial has the form anxn


+ an-1xn-1 + … + a1x + a0. You’ll need to use a vector to store exponents and coefficients. You should implement a constructor that takes a coefficient and an exponent as arguments so that you can write





Poly c = Poly(3,4) + Poly(2,2) + Poly(7,1) + Poly(-5,0);





to get the polynomial 3x4 + 2x2 + 7x – 5. You should overload the arithmetic operators +=, -= and +, - for addition and subtraction. You should overload *= to multiply a polynomial by a constant: 3(2x3 - 3x) = 6x3 – 9x. Finally you should include a member function at that evaluates a polynomial at a specific value for x. For example for the above polynomial:





double d = c.at(0) // d  5 = 3*04 + 2*02 + 7*0 -5

Design, implement and test a class Poly for polynomials. A polynomial has the form anxn?
All the instructions to accomplish this are in the text of your question. So start like this:





class Poly


. . .





and just fill in the details.





(now go do your homework)


What is wrong with my java programming . it has one error?

this is the error





C:\bbs%26gt;javac libmainsys.java


libmainsys.java:43: array required, but int found


ypub[nElems] = new libary(title, author, ypub);


^


1 error





C:\bbs%26gt;





// to run this program: C%26gt;java libmainsys


//////////////////////////////////////...


class libary


{


private String booktitle;


private String bookauthor;


private int yearpub;


//--------------------------------------...


public libary(String title, String author, int ypub)


{ // constructor


booktitle = title;


bookauthor = author;


yearpub = ypub;


}


//--------------------------------------...


public void displaylibary()


{


System.out.print(" Book Title: " + booktitle);


System.out.print(", Book Author: " + bookauthor);


System.out.println(",Year Publisher : " + yearpub);


}





public String getLast() // get title


{ return booktitle; }


} // end class libary

What is wrong with my java programming . it has one error?
In these lines


// put libary into array


public void insert(String title, String author, int ypub)


{


ypub[nElems] = new libary(title, author, ypub);


nElems++; // increment size





how can you have the same name on an array on the left side and an integer inside the parans on the right side?

survey monkey

Java AB: Grid World Case Study: Courage Critter (I need some help making)?

Write a class called CourageCritter that extends Critter.


A CourageCritter looks at all the locations within two steps of its current location. (Note: For a critter not near an edge, this includes 24 locations).


The CourageCritter counts all the Critters within those locations.


If there are fewer than c critters, the CourageCritter's color gets brighter.


If there are c or more critters, the CourageCritter's color gets darker.


The value of c indicates the courage level of the Critter. The courage level is set in the constructor.


Trouble in connecting jdbc with my sql server5.0 can anyone help?

error in db connectioncom.mysql.jdbc.exceptions.jdbc... C


ommunications link failure





Last packet sent to the server was 15 ms ago.


com.mysql.jdbc.exceptions.jdbc4.Commun... Communications link fai


lure





Last packet sent to the server was 15 ms ago.


at sun.reflect.NativeConstructorAccessorImp... Method)





at sun.reflect.NativeConstructorAccessorImp...


orAccessorImpl.java:39)


at sun.reflect.DelegatingConstructorAccesso...


onstructorAccessorImpl.java:27)


at java.lang.reflect.Constructor.newInstanc...


at com.mysql.jdbc.Util.handleNewInstance(Ut...


at com.mysql.jdbc.SQLError.createCommunicat...


074)


at com.mysql.jdbc.ConnectionImpl.createNewI...


at com.mysql.jdbc.ConnectionImpl.%26lt;init%26gt;(Con...


at com.mysql.jdbc.JDBC4Connection.%26lt;init%26gt;(JD...


at sun.reflect.NativeConstructorAccessorImp... Method)





at sun.reflect.NativeConstructorAccessorImp...


orAccessorImpl.java:39)


at sun.reflect.DelegatingConstructorAccesso...


onstructorAccessorImpl.java:27)


at java.lang.reflect.Constructor.newInstanc...


at com.mysql.jdbc.Util.handleNewInstance(Ut...


at com.mysql.jdbc.ConnectionImpl.getInstanc...


at com.mysql.jdbc.NonRegisteringDriver.conn...


:282)


at java.sql.DriverManager.getConnection(Dri...


at java.sql.DriverManager.getConnection(Dri...


at DatabaseConnection.%26lt;init%26gt;(DatabaseConnec...


at ServiceProvider_Frame.%26lt;init%26gt;(ServiceProv...


at ServiceProvider_Frame.main(ServiceProvid...


Caused by: java.net.ConnectException: Connection refused: connect


at java.net.PlainSocketImpl.socketConnect(N... Method)


at java.net.PlainSocketImpl.doConnect(Plain...


at java.net.PlainSocketImpl.connectToAddres...


at java.net.PlainSocketImpl.connect(PlainSo...


at java.net.SocksSocketImpl.connect(SocksSo...


at java.net.Socket.connect(Socket.java:518)


at java.net.Socket.connect(Socket.java:468)


at java.net.Socket.%26lt;init%26gt;(Socket.java:365)


at java.net.Socket.%26lt;init%26gt;(Socket.java:208)


at com.mysql.jdbc.StandardSocketFactory.con...


va:253)


at com.mysql.jdbc.MysqlIO.%26lt;init%26gt;(MysqlIO.ja...


at com.mysql.jdbc.ConnectionImpl.createNewI...


... 14 more

Trouble in connecting jdbc with my sql server5.0 can anyone help?
The error is "Connection refused" which means the connection port is not open due to mysql server is not listening on that port, or mysql died and is no longer listening on that port. Best way to find out is use the telnet command: telnet %26lt;mysqlURL%26gt; %26lt;mySqlPort%26gt;





example:


telnet mysqlServer 5984





If you get a blank screen on your command prompt, then connection is fine. Any other messages will be connection errors


JPanel size issue in java?

I am making code for the game connect four. I create a JPanel with a 2 dimensional array of JButtons and use pack() to put it into the JFrame. When i set the size of the JFrame in the main method, the JPanel remains small. How do I get this to work? thanks








here's the constructor








public ConnectFour(int boardsize, int winlength){





super();


boardSize = boardsize;


winLength = winlength;


Container c = getContentPane();


JPanel board = new JPanel(new GridLayout(boardSize, boardSize));


button = new JButton[boardSize][boardSize];


//loop creates a 2 dimensional JButton array


for(int i =0; i%26lt;boardSize; i++)


{


for(int j =0; j%26lt;boardSize; j++)


{


button[j][i] = new JButton();


board.add(button[j][i]);


button[j][i].addActionListener(this);


}


}


c.add(board);


pack();


-------------------------


this.setVisible(true);


this.setSize(700,700);


c.setSize(700,700);

JPanel size issue in java?
GridLayout does not honor component size or use any sizing rules (doesn't call getPreferredSize() on the contained components, etc.). Your JButtons don't have any content either (no String or Icon), so they are also very small.





Try putting your board inside another JPanel that has a FlowLayout (default will work), as FlowLayout will attempt to preserve preferred size. Then add the enclosing JPanel to the content pane, vice the board.


Choose the best choice?

1. Which of the following wud be a good example of a parent class to Elephant?


a. Mammals


b. ZooAnimals


c. Africa


d. myFavorite


2. according to C# convention, which of the following is a proper exception error message?


a. Division by zero


b. The bank balance is negative


c. Negative balance


d. The progam attempted to divide by zero


3. Which of the following is not a benefit of using inheritance?


a. Inheritance makes writing programs easier


b. Inheritance makes program easier to understand


c. Inheritance makes methods %26amp; data available to exisiting classes


d. Inheritance makes methods %26amp; data of subclasses available to superclass


4. A subclass constructor initiates data fields


a. Specific to subclass


b. That superclass %26amp; subclass share


c. Specific to subclass


d In all of subclasses within superclass


5. When programming in C#, methods are typically


a. Private


b. Public


c. Protected


d. hidden

Choose the best choice?
1a , Mammal and not Africa since Elephants are found in Asia as well


2a : Divide by zero


3 :d





4a : Actually this question should say 'initializes' and not 'initiates'





5a : If no other access level is specified they by default take private access , Please do clarify 5 in detail, through a good C# book because these are basics and you must be clear if you are hoping to program in C# or any other programming language for that matter.
Reply:1.c


2.d


3.d


4.d


5.b

online survey

Need help to create class?

Need help to create this class:





Create a class in C++ named Fractions having two integer data members named for a fraction’s numerator and denominator. The class’s default constructor should provide both data members with default values of 1 if no explicit user initialization is provided. The constructor must also prohibit a 0 denominator value. Additionally, provide member functions for displaying an object’s data values. Also provide the class with overloaded operators that are capable of adding, subtracting, multiplying, and dividing two Fraction objects according to following formulas:








Sum of two fractions: a/b + c/d = ad+cb / bd





Difference of two fractions: a/b - c/d = ad-cb / bd





Product of two fractions: a/b * c/d = ad / bd





Division of two fractions: a/b / c/d = bd / cd

Need help to create class?
Oh for Gawd's sake. Google "fraction class c++". The very first hit gets lots of code so you don't have to do your homework, project, or exam by your very own self. The skill of googling will serve you well on your first job so you don't have to do your own work by your very own self.


How to declare an array of objects?

Hello,





In C++, I have a simple class called "Money". I have a default constructor and a constructor that takes a char* paramter. I want to call the non-default constructor. How do I do it?





I want to write something like:





Money m( "hello!" )[100] ;


or


Money m[100]("hello!") ;


but neither are working?





Help!

How to declare an array of objects?
Money *m[100];


for(int i=0;i%26lt;100;i++)


m[0]= new Money("hello!");





Sorry boss! u cannot use non-default constructor while using arrays in C++.
Reply:you would have to say money = {"Hello", "Hello", etc 100 times for an array of 100 length. Just use a for loop to set the object.


for( . . . )


m[i] = "Hello";





or whatever.


you could also add to the end of the array by searching for the first null or empty index and setting it to the desired input.


Hey do anyone know how to write this program in java programing. i need some out line for the code please.?

a temperature class that has two instance variables: a temperature value double and a character for the scale, either c for Celsius or F for Fahrenheit. The classe should have four constructor methods: one for each instance variable(assume zero degrees if no value is specified and Celsius if no scale is specified). One with two parameter for the two instance variable, and a no-argument constructor. include the following (10 two accessor methods to return the temperature- one to return the degree of Celsius, the other to return the degree Fahrenheit – use the this fomula to write the two methods and round to nearest tenth of a degree:


DegreeC= 5(degree-32)/9


degree=(9(degree)/5)+32;


2. three mutator methods: one to set the value, one to set the scale( F or C) and one to set both ;


3. three comparison methods, and equals method to test whether two temperature are equal, one method to test whether one temperature is greater than another

Hey do anyone know how to write this program in java programing. i need some out line for the code please.?
Done sir,


You can search to solved your probleam from


http://expert.userstyle.com/


Please anyone know how to write this program in java programing. pleas give me some idea or out line please?

a temperature class that has two instance variables: a temperature value double and a character for the scale, either c for Celsius or F for Fahrenheit. The classe should have four constructor methods: one for each instance variable(assume zero degrees if no value is specified and Celsius if no scale is specified). One with two parameter for the two instance variable, and a no-argument constructor. include the following (10 two accessor methods to return the temperature- one to return the degree of Celsius, the other to return the degree Fahrenheit – use the this fomula to write the two methods and round to nearest tenth of a degree:


DegreeC= 5(degree-32)/9


degree=(9(degree)/5)+32;


2. three mutator methods: one to set the value, one to set the scale( F or C) and one to set both ;


3. three comparison methods, and equals method to test whether two temperature are equal, one method to test whether one temperature is greater than another

Please anyone know how to write this program in java programing. pleas give me some idea or out line please?
Done sir,


you can search at


http://expert.userstyle.com/
Reply:This little problem shows up as an example in the Swing GUI intro tutorial and as a tutorial for using Java RegEx. The RegEx with the new "printf" and its "entities" -- Java 6 -- is the most elegant, and shortest listing. But...





You program has other requirements.





I think your program is a console program with one main method ...





That means a String input


If you use Scanner, you still want String input





float celsius = Float.parseFloat( input );


int fahrenheit = (int) (celsius + 9/5 + 32); //Convert to a Fahrenheit value


m.appendReplacement(result, fahrenheit + "F");





You can take the user's input, compare for a cap F or cap C to branch logic with.
Reply:public class Temperature {





// Inst vars


double temperature;


char scale;





// Four constructors


public Temperature(double aTemp, char aScale) {


temperature = aTemp;


scale = aScale;


}





public Temperature(double aTemp) {


this(aTemp, 'c');


}





public Temperature(char aScale) {


this(0.0, aScale);


}





public Temperature() {


this(0.0, 'c');


}





// Accessor methods


public double getFarenheit() {


if (scale == 'F') return roundToTenths( temperature);


else return roundToTenths( 9.0*temperature/5.0 + 32.0);


}





public double getCelsius() {


if (scale == 'c') return roundToTenths( temperature):


else return roundToTenths( (temperature - 32.0) * 5.0 / 9.0 );


}





private double roundToTenths(double x) {


return (double) Math.round(x * 10.0) / 10.0;


}





// Mutator methods


public void setScale(char aScale) {


scale = aScale;


}





public void setTemp(double aTemp) {


temperature = aTemp;


}





public void setTempAndScale(double aTemp, char aScale) {


temperature = aTemp;


scale = aScale;


}





// Comparison methods


public boolean equals(Object anotherObj) {


// Overrides Object.equals() so we should use same signature


if (! (anotherObj instanceof Temperature)) return false;


// Use getFarenheit for comparison because


// getCelsius() rounded to tenths might compare


// as equal even when getFarenheit() does not.


Temperature t = (Temperature) anotherObj;


return getFarenheit() == t.getFarenheit();


}





public boolean isGreaterThan( Temperature anotherTemp ) {


return getFarenheit() %26gt; anotherTemp.getFarenheit();


}





public String toString() {


if (scale == 'c') return "" + getCelsius() + "c";


return getFarenheit() + "F";


}


}





=========================





The driver class would be something like this:





public class TestTemp()


{


public static void main(String[] args) {


System.out.println( "No-arg constructor = " + new Temperature());


System.out.println("Temp constructor = " + new Temperature( 100.0));


System.out.println("Scale constructor = " + new Temperature( 32.0, 'F'));





System.out.println("Freezing equals = " + ((new Temperature(32.0, 'F')).equals(new Temperature( 0.0, 'c'))));


System.out.println("Boiling equals = " + ((new Temperature(212.0, 'F')).equals(new Temperature( 100.0, 'c'))));





System.out.println("0.1F greater = " + ((new Temperature(0.0, 'F' )).isGreaterThan( new Temperature( 0.1, 'F'))));


System.out.println("0.1c greater = " + ((new Temperature(0.0, 'F' )).isGreaterThan( new Temperature( 0.1, 'F'))));





// Additional code to test accessors


// and mutators goes here


}


}
Reply:That is going to be quite difficult. If you are still stuck with your project assignment may be you can contact a java expert live at website like http://askexpert.info/ .

salary survey

Do anyone know how to write this program in java programing? i some help for out line?

a temperature class that has two instance variables: a temperature value double and a character for the scale, either c for Celsius or F for Fahrenheit. The classe should have four constructor methods: one for each instance variable(assume zero degrees if no value is specified and Celsius if no scale is specified). One with two parameter for the two instance variable, and a no-argument constructor. include the following (10 two accessor methods to return the temperature- one to return the degree of Celsius, the other to return the degree Fahrenheit – use the this fomula to write the two methods and round to nearest tenth of a degree:


DegreeC= 5(degree-32)/9


degree=(9(degree)/5)+32;


2. three mutator methods: one to set the value, one to set the scale( F or C) and one to set both ;


3. three comparison methods, and equals method to test whether two temperature are equal, one method to test whether one temperature is greater than another

Do anyone know how to write this program in java programing? i some help for out line?
Don sir, you need som experts experience from http://expert.userstyle.com/
Reply:Temperature Conversion Program in Java





Here's a simple program to convert temperatures between degrees Celcius, Fahrenheit and Kelvin written in Java. There's no GUI used here - all output is done via the command line.





File: Converter.java








/**


* Conversion between temperatures in Celcius, Fahrenheit and Kelvin


* Uses conversion forumulas from the wikipedia:


* http://en.wikipedia.org/wiki/Temperature...


* User: Elaine


* Date: 27-Dec-2005


*/


public class Converter {


public Converter()


{





}





// Method to convert from degrees Celcius to degrees Fahrenheit


public static float celciusToFahrenheit(float degCelcius)


{


float degFahrenheit;


degFahrenheit = degCelcius * 9/5 + 32;


return degFahrenheit;


}





// Method to convert from degrees Fahrenheit to degrees Celcius


public static float fahrenheitToCelcius(float degFahrenheit)


{


float degCelcius;


degCelcius = (degFahrenheit - 32) * 5/9;


return degCelcius;


}





// Method to convert from degrees Celcius to degrees Kelvin


public static float celciusToKelvin(float degCelcius)


{


float degKelvin;


degKelvin = degCelcius + 273.15f;


return degKelvin;


}





// Method to convert from degrees Kelvin to degrees Celcius


public static float kelvinToCelcius(float degKelvin)


{


float degCelcius;


degCelcius = degKelvin - 273.15f;


return degCelcius;


}





// Main method demonstrating usage of above methods


public static void main(String[] args)


{


System.out.print("100 degrees Celcius in Fahrenheit is: ");


System.out.println(celciusToFahrenheit(1...





System.out.print("-40 degrees Fahrenheit in Celcius is: ");


System.out.println(fahrenheitToCelcius(-...





System.out.print("0 degrees Celcius in Kelvin is: ");


System.out.println(celciusToKelvin(0));





// to convert from Kelvin to Fahrenheit, combine two methods:


System.out.print("373.15 degrees Kelvin in Fahrenheit is: ");


System.out.println(celciusToFahrenheit(k...


}


}








Luv





SK


Mail me :funmansk (at) yahoo.com


Join my group: http://groups.yahoo.com/group/funmansk


My blog : http://firstcitizen.wordpress.com


Fun blog : http://funmansk.blogspot.com


Get paid to view ad: http://www.advercash.net/index.php?ref=f...


Is this french?

%26lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"%26gt;


%26lt;html%26gt;%26lt;head%26gt;


%26lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"%26gt;


%26lt;script type="text/javascript"%26gt;


var now=new Date,t1=t2=t3=t4=t5=t6=t7=t8=t9=t10=t11=...


%26lt;/script%26gt;


%26lt;script language=javascript%26gt;%26lt;!--


lck='',sss=1168652155,ylp='p.gif?t=116...


--%26gt;%26lt;/script%26gt;%26lt;script language="javascript" type="text/javascript"%26gt;


_lcs = decodeURIComponent(_lcs);


var YAHOO=window.YAHOO||{};YAHOO.namespace=f... null;}var _2=ns.split(".");var _3=YAHOO;for(var i=(_2[0]=="YAHOO")?1:0;i%26lt;_2.length;++i){... _3;};YAHOO.log=function(_5,_6,_7){var l=YAHOO.widget.Logger;if(l%26amp;%26amp;l.log){retur... l.log(_5,_6,_7);}else{return false;}};YAHOO.extend=function(_9,_10){v... f=function(){};f.prototype=_10.prototype... f();_9.prototype.constructor=_9;_9.super...


YAHOO.namespace("Fd");


YAHOO.namespace("Fp");


YAHOO.Fp.nScreenWidth = (screen %26amp;%26amp; typeof(screen.availWidth)=='number') ? screen.availWidth : false;


YAHOO.Fp.bNarrow = (YAHOO.Fp.nScreenWidth ? (YAHOO.Fp.nScreenWidth%26lt;1024 ? 1 : 0) : -1);


YAHOO.Fp.d = document;


YAHOO.Fp.$ = function(id){


return (typeof(id)=='string') ? YAHOO.Fp.d.getElementById(id) : false;


};


YAHOO.Fp.beacon = function(sUrl, clearUlt, useYlh){


if(sUrl.indexOf('http')%26lt;0 %26amp;%26amp; YAHOO.Fp._ylh!=''){


if(clearUlt){


YAHOO.cookie.set("D","","-1","/","yaho...


}


sUrl=((clearUlt||useYlh)%26amp;%26amp;YLH)? '/'+YLH+'/'+ sUrl : sUrl;


}


var oImage = new Image();


oImage.src = sUrl+'?t=' + new Date().getTime();


setTimeout(function(){oImage = null;}, 1e4);


};


YAHOO.Fp.becon=YAHOO.Fp.beacon;


YAHOO.cookie = {


get : function(n){


var v = '',


c = ' ' + document.cookie + ';',


s = c.indexOf((' ' + n + '='));


if (s %26gt;= 0) {


s += n.length + 2;


v = unescape(c.substring(s, c.indexOf(';', s)));


}


return v;


},


set : function(n,v){


var a=arguments,al=a.length;


document.cookie = n + "=" + v +


((al%26gt;2%26amp;%26amp;a[2]!="") ? ";expires=" + (typeof(a[2])=="object" ? a[2] : (new Date(a[2] * 1000)).toGMTString()) : "") +


";path=" + ((al%26gt;3%26amp;%26amp;a[3]!="") ? a[3] : "/") +


";domain=" + ((al%26gt;4%26amp;%26amp;a[4]!="") ? a[4] : "www.yahoo.com");


},


checksub : function(sCookie,s){


var aParts = sCookie.split('%26amp;'),nParts = aParts.length,aKeyVal;


if (nParts==1) {


return sCookie.indexOf(s);


} else {


for(var i=0; i%26lt;nParts; i++){


aKeyVal = aParts[i].split('=');


if(aKeyVal[0]==s){


return i;


}


}


}


return -1;


},


getsub : function(n,s){


var sCookie = this.get(n);


var nExists = this.checksub(sCookie,s);


if (nExists%26gt;-1) {


return sCookie.split('%26amp;')[nExists].split('=')[1...


} else if (sCookie.indexOf(s)%26gt;0) {


return sCookie.split('=')[1];


}


return '';


},


setsub : function(n,s,v){


var sCookie = this.get(n),a=arguments,al=a.length;


var aParts = sCookie.split('%26amp;');


var nExists = this.checksub(sCookie,s);


if (sCookie=='') {


sNewVal=(s+'='+v).toString();


} else {


if(nExists==-1){nExists=aParts.length;...


aParts[nExists]=s+'='+v;


sNewVal = aParts.join('%26amp;');


}


return this.set(n,sNewVal,(a[3]||''),(a[4]||'/'...


}


}


YAHOO.Fp.changePageSize = function(bCheck){


if((location.search.indexOf('rs=')!=1 %26amp;%26amp; location.pathname.indexOf('cgi')%26lt;0) || !bCheck){


if(bCheck){


var bcn=new Image;


bcn.src='http://www.yahoo.com/'+(ylp?y...


}


location.replace('http://'+location.hostname+location.path... ? '?rs=1' : ''));


}


}


YAHOO.Fp.sPhpFsCookie="dl";YAHOO.Fp.sF... = YAHOO.cookie.get("FPS");


if(YAHOO.Fp.sFsCookie.indexOf("t")!=0 %26amp;%26amp; YAHOO.Fp.bNarrow!=-1){


YAHOO.cookie.set("FPS",(YAHOO.Fp.bNarr... ? "ds" : "dl"),400*3600000);


if(YAHOO.Fp.bNarrow==1){


YAHOO.Fp.changePageSize(1);


}


}else if(YAHOO.Fp.sPhpFsCookie != YAHOO.Fp.sFsCookie){


YAHOO.Fp.changePageSize(1);


}


YAHOO.Fp.togglePageSize = function(sSize){


YAHOO.cookie.set("FPS",sSize,400*36000...


YAHOO.Fp.changePageSize(0);


}


YAHOO.Fp.nPageSize = 0;


YAHOO.Fp._ie=YAHOO.Fp._ie7=YAHOO.Fp._i...


YAHOO.Fp._ff=0;


YAHOO.Fp._ffv=parseFloat("0",10);


YAHOO.Fp._ns=0;


YAHOO.Fp._nsv=parseFloat("0",10);


YAHOO.Fp._sf=0;


YAHOO.Fp._sfv=parseFloat("0",10);


YAHOO.Fp._op=0;


YAHOO.Fp._mac=0;


YAHOO.Fp._hostname=location.hostname;


YAHOO.Fp._ylh = typeof(YLH)!='undefined'?YLH+'/':'';


%26lt;/script%26gt;


%26lt;!--[if lt IE 6]%26gt;%26lt;script language="javascript" type="text/javascript"%26gt;YAHOO.Fp._ie55=1;...


%26lt;!--[if IE]%26gt;%26lt;script language="javascript" type="text/javascript"%26gt;YAHOO.Fp._ie=1;%26lt;/...


%26lt;!--[if IE 7]%26gt;%26lt;script language="javascript" type="text/javascript"%26gt;YAHOO.Fp._ie7=1;%26lt;...


%26lt;script type="text/javascript"%26gt;


var b,dt,l='',n='0',r,s,y;


y=' '+document.cookie+';';


if ((b=y.indexOf(' Y=v'))%26gt;=0) {


y=y.substring(b,y.indexOf(';',b))+'%26amp;';


if ((b=y.indexOf('l='))%26gt;=0) {


l=y.substring(b+2,y.indexOf('%26amp;',b));


if((b=y.indexOf('n='))%26gt;=0)n=y.substrin...


}


}


dt=new Date();


s=Math.round(dt.getTime()/1000);


r=Math.round(parseInt(n,32)%1021);


if (lck!=l) {


document.write('%26lt;meta http-equiv="Expires" content="-1"%26gt;');


if (location.search.indexOf('r'+r+'=')!=1) {


location.replace('http://'+location.hostname+location.path...


}


}


var ver="501";


function err(a,b,c) {


var img=new Image;


img.src='http://srd.yahoo.com/hp5-v'+v...


return true;


}


window.onerror=err;


function funld() {


var img=new Image;


now=new Date;


t6=now.getTime();


img.src='http://www.yahoo.com/'+(ylp?y... +'%26amp;d6='+(t7-t1)+'%26amp;d7='+(t8-t1)+'%26amp;d8='+(t...


}


window.onbeforeunload=funld;


%26lt;/script%26gt;


%26lt;title%26gt;Yahoo!%26lt;/title%26gt;


%26lt;meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l r (cz 1 lz 1 nz 1 oz 1 vz 1) gen true for "http://www.yahoo.com" r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l r (n 0 s 0 v 0 l 0) gen true for "http://www.yahoo.com" r (n 0 s 0 v 0 l 0))'%26gt;


%26lt;script language=javascript%26gt;var YLH='_ylh=X3oDMTFkcHNpc2pvBF9TAzI3MTYxND... var PID='1168651209'; document.write('%26lt;base href="http://www.yahoo.com/" target=_top%26gt;');%26lt;/script%26gt; %26lt;noscript%26gt;%26lt;base href="http://www.yahoo.com/_ylh=X3oDMTFk... target=_top%26gt;%26lt;/noscript%26gt;


%26lt;script type="text/javascript"%26gt;


YAHOO.Fp.use_two_col=0;


YAHOO.Fp.use_bt5=0;


YAHOO.Fp.use_search_bt=0;


YAHOO.Fp.use_editable_trough=0;


YAHOO.Fp.use_static_pa=0;


%26lt;/script%26gt;


%26lt;style type="text/css"%26gt;


body{font:13px arial,helvetica,clean,sans-serif;*font-s...


table{font-size:inherit;font:100%;}


select,input,textarea{font:99% arial,helvetica,clean,sans-serif;}


pre,code{font:115% monospace;*font-size:100%;}


body *{line-height:1.22em;}





.more, .bullet, .audio, .video, .slideshow, .search, .minimantle li, #minimantle li, #localnewsct #newstop li, a#editpage, a#editpage.on,#vsearchtabs dl dt a,#sboxfooter a.yans{


background-image:url(http://us.js2.yimg.com/us.js.yimg.com/i/...


background-repeat:no-repeat;


}


.btn-more-2, .hd li.on em, div.hd li.sparkle a, .hd, #mastheadbd .top, #mastheadbd, #doors li a, #today .ft li.on a{


background-image:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t...


background-repeat:repeat-x;


}





div.minimantle, #minimantle, #sizetoggle, #trough ul, #pa{


background-image:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t...


background-repeat:repeat-x;


}


.md{


background:#fff;


border:1px solid #b0bec7;


}


#left .md{


border:1px solid #91a7b4;


border-color:#b0bdc6 #91a7b4 #91a7b4 #b0bdc6;


}


.hd{


color:#18397c;


background-color:#fff;


background-position:bottom left;


border:1px solid #b0bec7;


border-bottom:1px solid #93a6b4;


}


.hd li a{


color:#18397c;


}


.hd li .pipe{


background:#788a98;


border-right:1px solid #fff;


}


.hd li.on em{


border:1px solid #91a7b4;


border-top-color:#778a98;


border-bottom:1px solid #fff;


background-color:#fff;


background-position:0 -178px;


}


.hd li.first em{


border-left:none;


}


.hd li.on a{


color:#c63;


}


div.hd li.sparkle em{


border:1px solid #768c9a;


border-bottom:1px solid #93a6b4;


}


div.hd li.sparkle a{


background-color:#b5cdd9;


background-position:0 -530px;


border:1px solid #fff;


}





.minimantle,#sizetoggle{


border:1px solid #9CAEBA;


border-width:0 1px 1px 0;


background-color:#91A7B4;


background-position:0 -2041px;


}


.minimantle .md-sub, #sizetoggle .bd{


border:1px solid #fff;


}


#sizetoggle .bd{


border:1px solid #dde4ea;


border-color:#afbdc6 #556b78 #556b78 #afbdc6;


}.minimantle h2 a, #minimantle h2 a{


color:#333;


}


.minimantle li, #minimantle li{


background-position:-8px -1px;


*background-position:-8px -1px;


}





#mastheadbd .top{


background-color:#e2eaed;


}


#mastheadbd{


background-color:#eef3f6;


background-position:0 -30px;


border:1px solid #dbe2e8;


border-width:0 1px;


border-bottom:1px solid #cad5db;


}





#searchIE{filter:progid:DXImageTransfo... sizingMethod="scale");}





#doors li{background:#dde6eb}


#doors li strong{


border:1px solid #dee6e9;border-color:#dee6e9 #586b7a #586b7a #dee6e9}


#doors li a{


border:1px solid #fff;


background-color:#fff;


background-position:bottom left;


}





.trough-promo .first{


border-color:#B0BEC7;


}





.tpromo2 .hd,#new-on{


border-color:#aec0ce #3d5360 #3d5360 #aec0ce;


}


#trough{


background:#91a7b4;


}


#trough .bd{


border:1px solid #fff;


border-width:0 1px 1px 0;


}#trough span{ background:#f8f9fb;


border-top:1px solid #91a7b5;


}


#trough ul{


background-color:#f8f9fc;


}


#trough li a{


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... 0 0 no-repeat;


}


span#edityservicescx{


background:#ebeff2 url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... 0 -757px repeat-x;


border-bottom:1px solid #000;


border-color:#b0bdc6 #91a7b4 #91a7b4 #b0bdc6;


}


#edityservices{


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... 0 -257px repeat-x;


}a#editpage{


background-position:100% -307px;


}


a#editpage.on{


background-position:100% -361px;


}





#today .ft li.on{


border:1px solid #afbec5;


border-color:#afbec5 #afbdc5 #afbdc5 #b0bfc6;


}


#today .ft li.on a{


color:#666;


background-color:#fcfcfc;


background-position:0 -296px;


}


#en-details{


background:#F1F5F6;


border:1px solid #b0bec7;


}


#newsft{


background:#F1F5F6;


border-top:1px solid #b0bec7;


}


#newsbottom{


border-top:1px solid #fff;


}





#marketplace hr{


border-top:1px solid #dce3e9;


color:#dce3e9;


}





#pa{


border-color:#afbdc6 #556b78 #556b78 #afbdc6;


background-position:0 -2700px;


}


#pabd{


border:1px solid #c9d7e2;


border-width:0 1px 1px 0;


}#patabs ul.patabs li div{


background:#9dadc4;


}


#patabs ul.patabs li h4{


background:#6b7fa0;


}


#patabs ul.patabs li a{


border:1px solid #c9d6de;


border-color:#aec0ce #3d5360 #3d5360 #aec0ce;


background-color:#fff;


}


#patabs ul.patabs li.tab-on a, #patabs .papreviewdiv{


border-color:#566c7a #c2d0d9 #c2d0d9 #c2d0d9;


border-width:1px 1px 0 1px;


background:#fff url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... repeat-x;


}


#patabs ul.patabs li.tab-on div{


background:#fff;


}


#patabs ul.patabs li.first a{


border-left-width:1px;


}


#patabs ul.patabs li.last a{


border-right-width:1px;


}


#patabs .papreviewdiv{


border:1px solid #c4cfd5;


border-top-color:#566c7a;


}





#footer{


color:#16387c;


}


#footer li{


border-left:1px solid #b0bec7;


}


#copyright{


color:#666;


}


.feedback {


border-right:1px solid #b0bec7;


}body{


text-align:center;


color:#333;


direction:ltr;


}


body,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,...


img,fieldset{border:0;}


ul,ol{list-style:none;}


legend{height:0;font-size:0;}


label{cursor:pointer;cursor:hand;}


cite{font:normal 85% verdana;}


em{font-style:normal;}


cite span{font-weight:bold;}


a,#news .bd .btn-more a:visited{color:#16387c;}


a:link,a:visited{text-decoration:none;...


#today .bd a:visited,#news .bd a:visited{color:#69789C;}


a:hover{text-decoration:underline;}


.on a:hover{text-decoration:none;}


.a11y,legend{position:absolute;left:-5...


u{


text-decoration:none;


}


ol:after, ul:after,


.md:after, .md-sub:after, .hd:after, .bd:after, .ft:after, .fixfloat:after, .fbody:after,


#colcx:after, #rightcx:after, #eyebrow:after, #masthead:after, #search:after, #tabs:after, #doors:after, #patabs:after, #patop:after, #trough-overlay-bd div:after, #newsft:after, #newsbottom:after{


content:".";


display:block;


font-size:0px;


line-height:0px;


height:0;


clear:both;


visibility:hidden;


}


ol, ul, .md, .md-sub, .hd, .bd, .ft, .fixfloat, .fbody, #colcx, #rightcx, #eyebrow, #masthead, #search, #tabs, #sbox, #doors, #patabs, #patop, #newsft, #newsbottom{zoom:1;_height:1px;}


.iemw{


display:none;


width:950px;


font-size:0px;


line-height:0px;


height:0px;


*display:block;


}


.submit,.s2{


padding:2px 5px;


font:bold 77% verdana;


overflow:visible;


color:#000;


background:#ddd;


cursor:pointer;


cursor:hand;


}


.inputtext{


border:1px solid #f0f0f0;


border-color:#7c7c7c #cecece #c3c3c3 #7c7c7c;


background:#fff url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat;


}


.more, .bullet, .audio, .video, .slideshow, .search, .minimantle li, #localnewsct #newstop li{


font:normal 77% verdana;


padding:2px 0 2px 18px;


}


#page .more{background:none;padding:2px 0 2px 5px;font-weight:bold;}


.plain{padding:2px 0;}


.bullet{background-position:-7px 1px;padding-left:9px;}


.video{background-position:-3px -50px;}


.audio{background-position:-3px -100px;}


.slideshow{background-position:-3px -151px;}


.search{background-position:-3px -200px;}


.btn-more{


position:absolute;


bottom:5px;


right:10px;


font:bold 77% verdana;


white-space:nowrap;


}


.btn-more-2{


padding:1px 10px 2px;


*padding:1px 5px 0;


font:bold 100% arial;


color:#000;


white-space:nowrap;


border:1px solid #999b9a;


background-color:#ce9200;


background-position:0 -450px;


}


.alert{


font:normal 77% verdana;


color:#f00;


}


a.norgie{


float:left;


width:19px;


height:20px;


margin:auto;


}


a.mover{


float:right;


margin:0 4px;


width:19px;


height:20px;


display:none;


}


.bd span,.ft span{display:none;}


.bd .current,.ft .current,.current span{display:block;}


.md{


position:relative;


margin:0 0 10px;


}


.hd{


position:relative;


margin:-1px -1px 0;


}


.hd h2{


position:relative;


font:bold 100% arial;


padding:1px 11px;


border-bottom:1px solid #fff;


}


.tabs{


padding:0;


}


.tabs .hd h2{


left:25px;


top:-2px;


}


.bd{


padding:5px 10px 10px;


}


.ft{


padding:9px;


}


.ad{


margin:0 0 10px;


}


.hide .bd,.hide .ft{display:none;}


.hd ul{


position:relative;


width:100%;


border-bottom:1px solid #fff;


}


.hd ul li{


position:relative;


float:left;


}


.hd li.last{


float:right;


_margin-right:-2px;


}


.hd li em{


position:relative;


display:block;


width:99%;


_width:99.5%;


min-height:14px;


_height:14px;


padding:2px 0 0px;


margin-right:-1px;


border-right:0;


}


.hd li a{


display:block;


font:normal 92% arial;


outline:none;


text-align:center;


white-space:nowrap;


z-index:50;


padding:1px;


margin-top:-1px;


}


.hd li.on{


z-index:60;


margin-bottom:-1px;


}


.hd li .pipe{


display:block;


position:absolute;


top:1px;


right:-1px;


height:1.15em;


width:1px;


_width:2px;


}


.hd li.on .pipe{


visibility:hidden;


}


.hd li.on em{


padding-bottom:1px;


_padding-bottom:2px;


margin:-1px 0 -1px;


*margin-bottom:-2px;


}


.hd li.on a{


font-weight:bold;


z-index:60;


border:0;


padding:1px;


}


.hd li.sparkle{


z-index:70;


}


div.hd li.sparkle em{


left:-1px;


padding:1px 0 0;


margin:-1px -1px -2px 0;


}


div.hd li.sparkle a{


font-weight:bold;


padding:1px;


z-index:70;


}


.hd li.off .pipe,


.hd li.on .pipe,


.hd li.last .pipe,


.hd li.sparkle .pipe{


visibility:hidden;


}


#news .hd ul li{width:25%;*width:24.9%;}


#today .hd ul li{width:25%;*width:24.9%;}


.md-sub h3{


font-size:100%;


}


#client{


position:absolute;


visibility:hidden;


}


#page{


margin:0 auto;


border-bottom:1px solid transparent;


*border:0;


position:relative;


min-width:950px;


width:70em;


*width:71.3em;


text-align:left;


}


#colcx{


position:relative;


min-width:950px;


}


#left{


float:left;


width:15.79%;min-width:150px;


margin:0 0 10px 0;


}


#rightcx{


float:right;


width:84%;*width:84.21%;min-width:800p...


*margin-left:-200px;


}


.colpadding{


margin-left:10px;


}


#middle{


float:left;


position:relative;


z-index:10;


float:left;


width:55%;


min-width:440px;


*width:54.9%;


}


#middle .md{


min-width:340px;


}


#right{


float:left;


position:relative;


width:45%;


min-width:360px;


*margin-right:-200px;


}


#masthead{


min-width:950px;


*margin-right:1px;


}


#loading{


display:none;


position:absolute;


top:2px;


right:2px;


z-index:999;


}


.minimantle{


position:relative;


margin:10px 0;


}


#smallbiz.md-sub{


border-bottom:1px solid #fff;


}


.minimantle h2{


font:bold 100% arial;


margin-bottom:4px;


}


.minimantle ul{


padding:5px 0 5px 10px;


}


.minimantle li{


font:bold 85% verdana;


padding:1px 0 1px 8px;


*padding:0 0 0 8px;


voice-family:"\"}\"";


voice-family:inherit;


property:value;


*padding:0 0 0 8px;


}


.minimantle li a{


margin-left:-15px;


voice-family:"\"}\"";


voice-family:inherit;


property:value;


margin-left:0;


}


.minimantle .hd {margin:-2px;}


.minimantle .hd h2{margin:0;}


.minimantle .hd a{color:#16387C !important;}


#mantlecx{


margin:0 0 10px;


}


#xyz{


width:0;


height:0;


}


#eyebrow{


position:relative;


margin:0 auto;


font:normal 77% verdana;


padding:3px 10px;


}


#eyebrow li{


float:left;


}


#eyebrow ul,#eyebrow ul a{


float:left;


}


.eyebrowborder{


border-right:1px solid #B0BEC7;


padding-right:5px;


margin-right:5px;


}


#ffhpcx{


position:absolute;


}


#headline{


float:right;


right:0;


}


#toolbar{display:none;}


#eyebrow #shpd a{text-decoration:none; display:inline; float:none;}


.shdw{-moz-border-radius:4px;backgroun...


#shpd .bd{border:1px solid #4333BC;-moz-border-radius:4px;width:360...


#pnt{position:absolute;top:-6px;left:3...


#shpd .shp{width:40px;height:37px;font-size:0p...


.shp strong{display:none;}


#shpd ol{margin:9px 9px 9px 60px;padding:0 0 0 1.5em;list-style:decimal;}


#shpd li{padding:0;}


#shpd p{border-top:1px solid #ccc; font-family:verdana !important; margin:0 9px 9px;text-align:center;}


#masthead{


z-index:90;


position:relative;


}


#mastheadbd .top{


display:block;


position:relative;


left:-1px;


margin-right:-2px;


height:4px;


font-size:0;


}


#mastheadbd .mh_footer{


position:absolute;


width:100%;


bottom:0;


clear:both;


}


#mastheadbd{


position:relative;


min-height:106px;


height:7.85em;


margin:0 auto 10px;


}


#masthead h1{


float:left;


margin:17px 0 0 18px;


*margin-left:8px;


*width:219px;


height:50px;


*height:45px;


}


#searchother{


*display:none;


position:absolute;


left:0;


height:100%;


max-height:120px;


min-height:85px;


width:100%;


}


#searchwrapper{


position:relative;


top:auto;


left:0;


margin-left:260px;


width:70%;


_width:90%;


height:6.1em;


padding:0 0 10px;


_z-index:100;


}


#searchIE{


display:none;


*display:block;


position:absolute;


width:100%;


height:113%;


_height:92%;


voice-family:"\"}\"";


voice-family:inherit;


property:value;


_height:90%;


}


#search{


position:relative;


z-index:200;


top:15px;


_height:89px;


zoom:1;


}


#scountry{


float:right;


position:relative;


margin-top:2px;


_margin-top:-2px;


top:0;


}


#scountry li{


display:inline;


position:relative;


white-space:norap;


}


#scountry li label{


margin:0 0 0 10px;


}


#scountry li.first label{


margin:0;


}


#scountry input{


margin:0 4px -3px 0;


_margin:0 2px -2px 0;


}


#vsearchtabs{


position:relative;


margin:0 0 5px;


_display:inline;


left:88px;


margin-left:3.6em;


_margin-left:0;


text-align:center;


z-index:100;


min-width:320px;


width:24em;


_width:30em;


overflow:visible;


min-height:16px;


height:1em;


}


#vsearchtabs li{


float:left;


_float:none;


_display:inline;


border-left:1px solid #b0bec7;


}


#vsearchtabs li.first, #vsearchtabs li.last{


border:0;


}


#vsearchtabs li a{


padding:0 7px;


font-size:92%;


border-right:1px solid #fff;


}


#vsearchtabs li.on a{


color:#333;


font-weight:bold;


}


.ignore{position:relative; }


#vsearchtabs dl{position:relative;display:inline;z-in...


#vsearchtabs dt{display:inline;}


#vsearchtabs dl dt a{


position:relative;


border-left:1px solid #B0BEC7;


padding:1px 18px 0 5px;


_padding:2px 19px 0px 5px;


text-transform:lowercase;


background-position:2em -406px;


line-height:14px;


height:14px;


}


#vsearchtabs dt a:hover, #vsearchtabs dt a.on{


border:1px solid #B0BEc7;


text-decoration:none;


margin:-1px 0 -1px 0;


_margin:-2px 0 -2px 0;


background-position:2em -454px;


*background-position:2em -453px;


_background-position:2em -454px;


*top:1px;


}


#vsearchtabs dt a.on, #vsearchtabs dt a.on:hover{


background-position:2em -505px;


*background-position:2em -504px;


_background-position:2em -505px;


text-indent:0;


}


#mastheadbd{position:relative;z-index:...


#search{overflow:visible;}


#search fieldset{overflow:visible;}


#vslist{


position:absolute;


left:0;


top:17px;


_top:1.4em;


display:none;


background:#889AA7;


z-index:100;


background:#eee;


border:1px solid #889AA7;


font:92% arial;


width:12em;


text-align:left;


}


#vslist div{


position:relative;


margin:-2px -0px -0px -2px;


background:#fff;


border:1px solid #889AA7;


padding:5px 2px;


}


#vslist span{


position:relative;


display:block;


margin:8px 4px 5px;


border-top:1px solid #889AA7;


font-size:1px;


height:1px;


}


#vslist ul,#vslist li{


position:relative;


border:0;


display:block;


float:none;


}


#vsearchtabs #vslist a{


position:relative;


display:block;


padding:3px 4px;


}


#vslist a:hover{


background:#889AA7;


color:#fff;


text-decoration:none;


}


#sbox{


min-height:25px;


height:2em;


width:100%;


margin:0 0 1px;


}


#sbox label{


float:left;


}


#searchlabel{


position:relative;


margin:2px 8px 0 20px;


font:bold 122% arial;


color:#333;


}


#p,#scsz{


width:100%;


padding:3px 0 3px 3px;


_height:24px;


}


#searchbox .plong{


width:100%;


}


#search .btn-more-2{


float:left;


position:relative;


margin-left:-1px;


padding:2px 10px;


*padding:1px;


min-width:140px;


width:10em;


_width:140px;


*overflow:visible;


cursor:pointer;


z-index:50;


text-align:center;


}


#searchbox{


float:left;


width:62%;


text-align:left;


margin-bottom:0;


*margin-top:-1px;


}


#searchbox .plabel,#searchbox .cszlabel2{


width:44.5%;


}


#searchbox .cszlabel1{


text-align:center;


font-weight:bold;


padding-top:5px;


width:8.4%;


*width:7.0%;


}


#searchbox span{


font-size:77%;


}


#sboxfooter{


position:relative;


left:8.8em;


_left:8.5em;


width:62.5%;


padding-bottom:6px;


font:normal 77% verdana;


text-align:center;


white-space:nowrap;


zoom:1;


margin-top:-3px;


_margin-top:-4px;


z-index:10;


line-height:14px;


}


#sboxfooter .answers a{


padding:2px 0;_padding:0;_width:1em;_line-height:18p...


}


#sboxfooter a.yans{


font-weight:bold;background-position:-... -563px;_width:1em;padding-left:18px;


}


#sboxfooter .answers em{


padding:2px 0;*padding:0;_line-height:18px;


}


#sboxfooter em{font-style:italic;}


#mh_footer{z-index:9;}


#doors{


position:absolute;


left:20px;


*left:10px;


bottom:4px;


*bottom:3px;


border:0;


background:0;


}


#doors ul{


border:0;


}


#doors li{


float:left;


margin:0 0 0 5px;


}


#doors li strong{


display:block;


position:relative;


top:-1px;


left:-1px;


min-width:82px;


*width:5.5em;


_width:3em;


}


#doors li a{


position:relative;


min-width:60px;


_width:4.8em;


margin:0;


padding:1px 6px;


font:normal 100% arial;


}


#trough{


position:relative;


overflow:hidden;


*overflow:visible;


}


#trough .bd{


padding:0;


}


#trough span{


display:block;


}


#trough span{


position:relative;


margin:-1px -1px 0 0;


padding:5px;


}


#trough .btn-more-2{


display:block;


position:static;


padding:1px 2px;


font-size:92%;


text-align:center;


white-space:nowrap;


}


#trough li{


padding:3px 0 3px 5px;


p\adding:3px 0;


margin-left:-15px;


ma\rgin-left:0;


}


#trough li a{


display:block;


*display:inline;


min-height:12px;


padding:3px 0 3px 25px;


margin:-1px 0 -2px;


font:bold 84% verdana;


voice-family:"\"}\"";


voice-family:inherit;


property:value;


_margin-left:0;


}


#trough li.adaptive{


padding:3px 0 3px 5px;


*padding:2px 0 2px 5px;


font:bold 122% arial;


}


#trough li.adaptive a{


padding:1px 0 1px 25px;


}


#trough .highlight a{


color:#C40007;


}


span#edityservicescx{


display:block;


position:relative;


padding:1px;


text-align:right;


margin-right:-1px;


}


#edityservices{


display:block;


width:43px;


height:11px;


font-size:0px;


text-indent:-5000px;


margin-left:auto;


}


#edityservices:hover{


text-decoration:none;


}


#trough small{


margin:-3px 0 0 1px;


*margin-top:1px;


position:absolute;


}


#trough #trough-promo small{


margin:-3px 0 0 1px;


*margin-top:1px;


position:absolute;


}


#trough-promo{


background-position:0 -300px;


border-top:1px solid #F3F6F9;


}


#trough-promo .first{


border-width:1px 0 0;


border-style:solid;


}


#pagesettingscx{


position:absolute;


right:10px;


bottom:3px;


zoom:1;


z-index:90;


}


a#editpage{


font:normal 77% verdana;


padding-right:15px;


zoom:1;


display:block;


*display:inline;


height:12px;


}


#pagesettings{


display:none;


position:absolute;


top:100%;


right:-3px;


min-width:160px;


margin:2px 0 0;


background:#acc0c9;


z-index:99;


}


#pagesettings .iemw{


width:150px;


}


#pscolors{


width:100%;


}


#pagesettings .bd{


position:relative;


top:-1px;


left:-1px;


padding:0;


background:#fffac6;


border:1px solid #000;


border-color:#cad5db #6b8792 #6b8792 #cad5db;


}


#pagesettings .bd span{


display:block;


padding:15px 5px;


font:bold 77% verdana;


white-space:nowrap;


border:1px solid #fff;


border-width:0 1px 1px 0;


text-align:center;


}


#pagesettings h4{


float:left;


_margin-right:-2px;


font:bold 100% verdana;


}


#pagesettings ol{


border:1px solid transparent;


margin:-1px;


*border:0;


*margin:0;


}


#pagesettings ol li{


float:left;


}


#themes li a,#psbca{


display:block;


margin-left:6px;


width:13px;


height:12px;


text-indent:-5000px;


font-size:0px;


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/s... no-repeat;


cursor:pointer;


cursor:hand;


zoom:1;


}


#themes li a:hover{


text-decoration:none;


}


#themes #t1{background-position:0 0;}


#themes #t2{background-position:-19px 0;}


#themes #t3{background-position:-38px 0;}


#themes #t4{background-position:-57px 0;}


#themes #t5{background-position:-75px 0;}


#themes #t7{background-position:-94px 0;}


#themes #t1.on{background-position:0 -15px;}


#themes #t2.on{background-position:-19px -15px;}


#themes #t3.on{background-position:-38px -15px;}


#themes #t4.on{background-position:-57px -15px;}


#themes #t5.on{background-position:-75px -15px;}


#themes #t7.on{background-position:-94px -15px;}


#pagesettingscx #sizetogglelink{


display:block;


margin-top:10px;


padding-top:8px;


border-top:1px solid #cbd4db;


zoom:1;


}


#today{


min-height:234px;


_height:234px;


}


#today h3{


font:bold 122% arial;


color:#16387c;


}


#today h3 a{


font:bold 100% arial;


}


#today h3 a.video{


padding-left:18px;


background-position:-3px -47px;


}


#today p{


margin:5px 0;


}


#today .bd{


position:relative;


padding:6px 0 4px 10px;


_padding:7px 0 5px 10px;


min-height:114px;


_height:116px;


background:#fff;


}


#today .timestamp{


margin-bottom:6px;


_margin:-1 0 6px;


}


#today .bd img{


float:left;


margin-right:10px;


width:154px;


height:115px;


padding:1px;


border:1px solid #9dafbd;


border-color:#9eb1c0 #677787 #677787 #9eb1c0;


}


#today .pencil,#today img.editor{


position:absolute;


width:auto;


height:auto;


}


#today .bd span.current span{


float:left;


width:57%;


*width:56.5%;


margin-bottom:-6px;


overflow:hidden;


}


#today .bd h3,#today .bd p,#today .bd ul{


margin:0 0 6px;


}


#today .bd ol,#today .bd ul,#today .bd ul li{


float:left;


}


#today .bd ul{


width:100%;


}


#today .bd ul li a{


margin-right:10px;


white-space:nowrap;


zoom:1;


}


#newsbd dl dt a, #today .bd ul.inline li a{


margin-right:3px;


font:normal 77% verdana;


}


#today .bd ul.inline{


margin-left:-10px;


}


#today .bd ul.inline li{


display:inline;


float:none;


margin:-2px 0 -2px 4px;


padding-left:5px;


border-left:1px solid #B0BEC7;


}


#today .bd ol li a{


display:block;


*display:inline;


zoom:1;


}


#today .ft{


position:relative;


padding:0 5px 22px;


_padding:0 5px 23px;


background:#fff;


}


#today .ft ul{


float:left;


*float:none;


padding:2px 0 0;


width:100%;


}


#today .ft li{


position:relative;


float:left;


width:46%;


margin-right:2%;


min-height:30px;


_height:30px;


border:1px solid #fff;


}


#today .ft li img{


float:left;


margin:0 5px 0 2px;


padding:1px;


border:1px solid #9eb1c0;


border-color:#9eb1c0 #677787 #677787 #9eb1c0;


}


#today .ft li a{


display:block;


padding:2px 0;


margin:1px;


min-height:22px;


_height:22px;


font:normal 77% verdana;


}


#today .ft li a .editor{


position:absolute;


left:0;


}


#news{


background:#f5f7f6;


z-index:70;


}


#news.afterhours{


}


#page #news .btn-more{


bottom:10px;


_bottom:9px;


}


#newsbd{


position:relative;


padding:9px 0 0;


background:#fff;


}


#newstop{


position:relative;


_margin-top:4px;


padding:0 9px 18px;


_padding-bottom:1.2em;


min-height:139px;


_height:157px;


}


#newstop.special{


min-height:92px;


*min-height:95px;


_height:111px;


}


#news.afterhours #newstop{


min-height:157px;


_height:176px;


}


#news.afterhours #newstop.special{


min-height:110px;


*min-height:113px;


_height:130px;


}


#news .single-panel{


padding:0 0 1.4em 9px;


min-height:187px;


*min-height:186px;


_height:205px;


}


#news.afterhours .single-panel{


min-height:181px;


_height:201px;


}


#newstop i{


color:#dadada;


}


#newsft{


position:relative;


font:normal 77% verdana;


color:#333;


}


#newsbottom{


padding:4px 0 4px 10px;


}


#news.afterhours #newsbottom{


padding:4px 0 6px 10px;


}


#finance-data{


float:left;


}


#news-sponsor{


float:left;


display:inline;


margin-left:10px;


font-size:92%;


color:#333;


}


#news.afterhours #news-sponsor{


position:relative;


top:1px;


_top:0;


margin:-12px 0 0 10px;


_margin-top:-10px;


white-space:nowrap;


}


#news-sponsor img{


display:block;


margin:5px 0 0;


}


#news.afterhours #news-sponsor img{


display:inline;


position:relative;


top:3px;


*top:4px;


}


#markets, #markets span, #markets ul, #markets li, #quotes fieldset{


display:inline;


}


#news.afterhours #markets{


margin:0;


}


#markets h3{


font:normal 100% verdana;


display:inline;


}


#markets li{


white-space:nowrap;


margin-left:5px;


}


#quotes a{


color:#333;


}


#quotes{


margin-top:5px;


}


#quotes a,#s{


margin-right:5px;


}


input#s{


font-size:107%;


padding:1px;


}


#quotes .submit{


font-size:100%;


padding:0 3px;


}


#newsbd li a cite{


display:block;


font:normal 77% verdana;


color:#333;


}


#newsbd li a:hover cite{


text-decoration:none;


}


#newsbd dl dt a{


margin:0;


}


#newsbd dl{


display:inline;


margin:0 0 0 6px;


border-left:1px solid #B0BEC7;


}


#newsbd dl dt{


display:inline;


margin-left:5px;


}


#markets .up{color:#359c00;}


#markets .down{color:#c00;}


#videonewsct ul{


margin:7px 0 0 -5px;


}


#videonewsct li{


float:left;


margin:0 -1px 10px 2px;


padding:0 0 0 1px;


width:49%;


}


#videonewsct li img{


float:left;


margin-right:5px;


padding:1px;


border:1px solid #9dafbd;


border-color:#9eb1c0 #677787 #677787 #9eb1c0;


}


#page #news ul.btn-more, #more-today{


position:absolute;


bottom:9px;


_bottom:8px;


margin:0;


padding:0 0 1px;


color:#16387c;


}


#more-today{


bottom:5px;


}


#news ul.btn-more li, #more-today span{


display:inline;


margin-right:5px;


padding-right:5px;


line-height:1em;


border-right:1px solid #94a1c3;


}


#news ul.btn-more li a, #more-today a{


line-height:1em;


}


#news ul.btn-more li.first, #more-today .first{


border:0;


padding:0;


font-weight:normal;


}


#news ul.btn-more li.last, #more-today .last{


border:0;


margin:0;


padding:0;


}


.timestamp{


display:block;


font:normal 77% verdana;


color:#999;


margin-bottom:4px;


}


#localnewsct li cite{font:normal 77% verdana;}


#localnewsct li cite a{color:#666;}


#localnewsulmcx{position:absolute;}


.ulmtrigger,.ulmtriggeron{position:abs... 77% verdana;}


.ulmtrigger a,.ulmtriggeron a{background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat left 50%;padding-left:12px;}


.ulmtriggeron a{background-image:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t...


#localnewsct #newstop{


z-index:3;


}


#localnewsct .nocookie dl{


display:block;


}


#localnewsct #newstop h4{


font-size:122%;


margin:0 0 1px;


}


#localnewsct .nocookie form.ulmform{


position:relative;


top:20px;


margin:0 0 20px;


}


#localnewsct #newstop .inputtext{


_height:22px;


width:75%;


}


#localnewsct #newstop li{


font:normal 100% arial;


padding:0 0 0 10px;


background-position:-7px 1px;


overflow:hidden;


white-space:nowrap;


*width:100%;


text-overflow:ellipsis;


}


#localnewsct #newstop li cite{


font-size:85%;


color:#666;


}


#localnewsct .ulmmarkets{


color:#333;


}


#localnewsct .nocookie fieldset{


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/s... 7px 12px no-repeat;


}


#localnewsct span.alert{


font-size:85%;


}


#marketplace .bd{


min-height:165px;


_height:165px;


}


#marketplace table{


margin-bottom:-5px;


}


#marketplace hr{


display:block;


margin:4px 0 3px;


*margin:-3px 0;


}


#patop{


position:relative;


padding:8px 9px 9px;


}


#patop .so{


padding:2px 0;


}


#patop .so a{


font-weight:bold;


}


#reg li{


_margin-left:-15px;


_ma\rgin:0;


}


#reg h2{


font:normal 122% arial;


}


#reg h2 a{


font-weight:bold;


}


#signup,#signout{


position:absolute;


top:2px;


right:0;


t\op:10px;


r\ight:10px;


}


#signout{


top:11px;


right:10px;


font:normal 77% verdana;


}


#patabs{


padding:0 2px 2px 5px;


margin-top:-5px;


}


#patabs ul.patabs li{


color:#8899a9;


float:left;


min-width:113px;


width:33.2%;


}


#patabs ul.patabs{


position:relative;


z-index:10;


}


#patabs ul.patabs li div{


display:block;


position:relative;


z-index:2;


margin:4px 3px 0;


}


#patabs ul.patabs li.first div{


margin-left:2px;


}


#patabs ul.patabs li.last div{


margin-right:0;


}


#patabs ul.patabs li h4,#patabs ul.patabs li a{


display:block;


position:relative;


z-index:2;


top:-1px;


left:-1px;


font:bold 92% verdana;


}


#patabs ul.patabs li a{


z-index:20;


padding:1px 0;


*padding:0;


}


#patabs ul.patabs li.tab-on a{


margin:-1px -1px -3px;


top:0;


left:0;


*background-position:0 1px;


}


#patabs li a.details b{


display:block;


position:absolute;


bottom:5px;


*bottom:4px;


_bottom:8px;


left:40px;


padding-right:1px;


font-size:92%;


font-weight:normal;


}


#patabs li.tab-on a.details b{


bottom:13px;


*bottom:12px;


}


#patabs li.tab-on .icon{


padding-bottom:17px;


}


#patabs li .details .icon{


padding:3px 0 14px 40px;


}


#patabs li.tab-on .details .icon{


padding:3px 0 22px 40px;


}


#patabs li .icon{


display:block;


z-index:10;


padding:8px 0 9px 40px;


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... 5px 3px no-repeat;


}


#patabs .papreviewdiv{


position:relative;


z-index:1;


visibility:hidden;


margin-right:1px;


*margin-right:0;


_margin-right:1px;


}


#patabs .preview-on{


visibility:visible;


padding-top:4px;


}


#patabs .papreviewdiv span{


display:none;


}


#patabs .papreviewdiv span.current{


display:block;


}


#patabs #messenger .icon{


padding-left:31px;


background-position:2px -497px;


}


#patabs #music .icon{


background-position:5px -197px;


}


#patabs #answers .icon{


padding-left:36px;


background-position:5px -695px;


}


#patabs #weather .icon{


background-position:5px -297px;


}


#patabs #traffic .icon{


background-position:5px -397px;


}


#patabs #movies .icon{


background-position:5px -597px;


}


#patabs #horoscope .icon{


padding-left:29px;


background-position:3px -797px;


}


.nav a{position:absolute;z-index:90;top:40%;w...


.nav a.back{left:3px;background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat;}


.nav a.frwd{right:3px;background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat;}


.nav a:hover{text-decoration:none;}


.pa-alert{text-align:center;color:#163... 20px;_padding:0;}


.pa-alert h3,.pa-alert ul{margin:5px auto 0;text-align:left;}


.pa-alert h3{_margin-left:20px;_padding-left:20px;...


.default{_margin-left:-20px;}


.default li{float:left;padding-left:20px;}


.default li.last{width:14em;padding-left:10px;mar...


.default li.last a{font-weight:bold;text-decoration:under...


.error,.promo{position:absolute;bottom... url(http://us.js2.yimg.com/us.js.yimg.com/i/... repeat-x;}


.error ul{margin:15px 10px 15px 10px;_margin-left:15px;padding:10px 0 0 80px;background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/s... no-repeat;}


.error li{float:none;margin:0;}


.error li.first{padding:5px 0 15px;_height:50px;min-height:35px;}


.error li.first a{text-decoration:underline;font-weight:...


.error li.last{text-align:right;font:bold 77% verdana;}


.promo{


_top:auto;


padding-right:0;


_padding-bottom:10px;


}


.promo h4{


font:normal 107% arial;


color:#434343;


margin:10px 0 0 0;


_margin-left:20px;


padding:15px 0 65px 50px;


_padding-left:40px;


zoom:1;


}


#page .promo h4 a{


font-weight:bold;


text-decoration:underline;


}


.promo p{


position:absolute;


top:50px;


right:20px;


font:normal 77% verdana;


text-align:right;


color:#434343;


}


.promo p .more{


display:block;


font:bold 100% verdana;


text-decoration:none;


}


.promo p .more:hover{


text-decoration:underline;


}


#mailpreview .error ul{background-position:0 10px;}


#messengerpreview .error ul{background-position:0 -150px;}


#musicpreview .error ul{background-position:0 -300px;}


#weatherpreview .error ul{background-position:0 -445px;}


#trafficpreview .error ul{background-position:0 -600px;}


#horoscopepreview .error ul{background-position:0 -750px;}


#answerspreview .error ul{background-position:0 -900px;}


.loading{margin-top:35px;text-align:ce...


#pa .loading h3{font-size:122%;text-align:center;}


.papreviewdiv .btn-more{bottom:3px;right:10px;z-index:...


.papreviewfooter .fleft{float:left;}


.papreviewfooter .fright{float:right;}


#mailpreview table{margin-bottom:1.2em;width:100%;bor... 100% arial;margin-top:3px;table-layout:fixed;... solid #ebeff2;}


#mailpreview table td{height:152%;background:#fff;border-to... solid #ebeff2;white-space:nowrap;overflow:hidd...


#mailpreview table td.left{padding-left:8px;}


#mailpreview table td.right{padding-left:18px;}


#mailpreview .left{width:33%;}


#mailpreview .center{width:44%;*width:38%;}


#mailpreview .right{width:23%;*width:29%;}


#mailpreview table td a{float:left;white-space:nowrap;overflow...


#mailpreview th{font:normal 85% verdana;text-align:left;}


#mailpreview .pamailfooter{position:absolute;bottom:5... verdana;}


.pamailfooter{font-size:85%;}


.pamailfooter .fleft{float:left;}


.pamailfooter .fright{float:right;}


#mailpreview .hdr{color:#333;}


#mailpreview .seen1{color:#666;}


#mailpreview .btn-more{font-size:85%;}


#mailpreview .hdr th.left{padding-left:8px;}


#mailpreview .hdr th.right{padding-left:18px;}


#mailpreview .seen0{color:#16387c;font-weight:bold;}


#answerspreview dl.hd{background:none;border:0;padding:0 10px 3px;}


#answerspreview dl.hd dt{float:left;}


#answerspreview dl.hd dd{margin-left:9em;line-height:150%;font...


#answerspreview .points{position:absolute;top:4px;right:... 4px;border:1px solid #e3e8ed;color:#22498d;font:bold 77% verdana;}


#answerspreview dl.nologin{background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat 5px -695px;padding-left:35px;}


#answerspreview dl.nologin dt{float:none;font-weight:bold;}


#answerspreview dl.nologin dd{margin:0;}


#answerspreview h3{margin:0;padding:0 0 3px;font-size:100%;}


#answerspreview .bd{margin:0 0 1.3em;padding:3px 10px 4px;border:1px solid #dde4e9;border-width:1px 0;background:#f1f8e6;}


#answerspreview .bd dl{padding-left:28px;position:relative;}


#answerspreview .bd dt{display:inline;padding-right:5px;font...


#answerspreview .bd dd{display:inline;font:normal 77% verdana;white-space:nowrap;}


#answerspreview .bd dd.image{position:absolute;top:2px;left:... solid #dde4e9;}


.linklist li{display:inline;padding-left:5px;margi... solid #B0BEC7;}


.linklist li.first{padding-left:0;margin-left:0;bo...


#answerspreview .papreviewfooter{position:absolute;botto... verdana;}


#musicpreview,#horoscopepreview{paddin...


#musicpreview{text-align:center;margin... auto;}


#musicpreview h3{font:bold 100% arial;text-align:left;margin:3px 0 3px 10px;color:#16387c;}


#musicpreview h3 em{font-weight:normal;}


.station{position:relative;left:1px;wi... auto 10px;text-align:left;background:#F8F9FD;...


#horoscopepreview{text-align:center;ma... auto;min-height:7.6em;_height:7.6em;padd...


#horoscopepreview h3{font-size:100%;text-align:left;}


#horoscopepreview .station{background:#fff;}


.station-bd{min-height:70px;*height:70... 100% 0 no-repeat;}


.station-hd,.station-ft{position:absol...


.station-hd{top:0;background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat;}


.station-ft{bottom:-1px;background:url... no-repeat;}


.station-name{float:left;min-height:15... 100% arial;*font-size:85%;margin:2px 0 0;}


.photo-link{float:left;margin:0 5px 0 0;border-right:1px solid #353535;width:70px;height:70px;text-alig...


#horoscopepreview .photo-link{background:#F1F5F6;border:0;...


.station-photo{width:70px;height:70px;...


#horoscopepreview .station-photo{width:35px;height:35px;ma...


#horoscopepreview .papreviewfooter{position:absolute;botto... verdana;}


.artists{float:left;width:185px;min-he... 77% verdana;color:#666;}


#horoscopepreview .artists{padding-bottom:5px;}


.artists a{display:block;overflow:hidden;color:#6...


.listen{float:right;width:45px;height:... -3px 5px 0;text-indent:-5000px;background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat;display:none;*display:inline;}


#horoscopepreview .lsigns ul{color:#16387c;font-weight:bold;text-a...


#horoscopepreview .lsigns ul li{line-height:155%;padding-left:16px;ba... no-repeat 0 4px;}


#horoscopepreview small{font-weight:normal;}


#horoscopepreview .bd{background:#FFFAC6;border-top:2px solid #97ADBA;}


#horoscopepreview .head{min-height:16px;_height:16px;}


#horoscopepreview .head a{font:bold 77% verdana;}


#horoscopepreview .fleft{float:left;}


#horoscopepreview .fright{float:right;}


#horoscopepreview .lsigns{background:#fff url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... repeat-x top;border:1px solid #E7ECF0;border-top:1px solid #97ADBA;padding:3px 0 4px;}


#horoscopepreview .lsigns .fleft{width:46%;}


#horoscopepreview .lsigns .fright{float:left;}


.papreviewheader{


margin-top:4px;


padding:0 10px;


height:1.5em;


clear:both;


overflow:hidden;


}


.papreviewheader .fleft{float:left;font-size:100%;font-we...


.papreviewheader .fright{float:right;font:85% verdana;}


.papreviewheader .fright a{background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat left 50%;padding-left:15px;}


#moviespreview h3{


font:bold 100% arial;


text-align:left;


margin:3px 0 3px 10px;


color:#16387c;


}


#page #moviespreview span{display:block;}


#moviespreview{


padding-bottom:1.9em;


}


#moviespreview li img{


position:relative;


z-index:5;


width:85px;


height:55px;


}


ol.movies{


position:relative;


margin:5px 32px 0;


z-index:10;


}


.movies a span, .movies a cite{


display:block;


position:absolute;


top:0;


left:0;


width:100%;


padding-top:55px;


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat top center;


text-align:center;


z-index:10;


font:normal 85% verdana;


}


.movies li{


float:left;


position:relative;


width:33%;


text-align:center;


}


.movies li .poster{


display:none;


}


.movies .details-show .details{


display:block;


}


.movies li .details{


display:none;


position:absolute;


top:-3px;


left:1px;


z-index:20;


min-width:88px;


_width:88px;


min-height:3.75em;


background:#fcf8d2 url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... top right no-repeat;


}


.details .mvbd{


margin:0 6px 0 0;


padding-left:3px;


min-height:70px;


_height:70px;


font:normal 85% verdana;


border:1px solid #c2be7f;


border-width:1px 0 0 1px;


}


.boxoffice .details .mvbd{


min-height:85px;


_height:85px;


}


#moviespreview .details ul{margin:0;}


.details h5{font:bold 100% arial;}


.details .rate{font-weight:bold;}


.details li{display:block;white-space:nowrap;floa...


.details li em{font:bold 100% arial;color:#f46924;}


.details .tl,.details .bl,.details .br{position:absolute;right:0;bottom:-6p... url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... bottom right no-repeat;}


.details .tl{bottom:auto;top:-1px;left:0;width:2p... no-repeat;}


.details .bl{right:auto;left:0;bottom:0;width:4px... bottom left no-repeat;}


#pamssgr{


position:relative;


padding:1px 5px 2px;


}


#pamssgr span#panav{


display:block;


position:absolute;


top:1px;


right:5px;


white-space:nowrap;


}


#pamssgr .hdr{


color:#16387c;


}


#msgrcount{


display:inline;


float:none;


}


#panav a{


font:bold 77% verdana;


color:#16387c;


}


#panavprev{


padding-left:10px;


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... center left no-repeat;


}


#panavnext{


padding-right:10px;


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... center right no-repeat;


}


#pamssgr ol{


display:none;


}


#pamssgr ol li{


margin:3px 0 0;


}


#pamssgr .current{


display:block;


padding-bottom:20px;


*padding:auto;


}


#pamssgr .blast{


width:16px;


height:16px;


zoom:1;


}


#pamssgr li a.on{


background:url(http://us.i1.yimg.com/us.yimg.com/i/us/p... 0 0 no-repeat;


}


#pamssgr .buddy{


margin-left:5px;


padding-left:18px;


font-weight:bold;


background:url(http://us.i1.yimg.com/us.yimg.com/i/us/m... 0 2px no-repeat;


}


#pamssgr .buddyop{


color:#16387c;


}


#pamssgr .ft{


position:absolute;


bottom:5px;


padding:0 5px;


*padding:0;


margin:0;


font:bold 77% verdana;


}


#pamssgr .three60{


float:left;


font-weight:normal;


}


#pamssgr .psmssgrlnch{


float:right;


_padding-right:10px;


}


#Ymsgr02{position:absolute;left:-1000p...


.papreviewheader{


margin:0;


padding:0 10px;


height:1.4em;


clear:both;


overflow:hidden;


}


.papreviewheader .fleft{float:left;font-size:100%;font-we...


.papreviewheader .fleft a{line-height:150%;}


.papreviewheader .fright{float:right;font:85% verdana;display:inline !important;}


.papreviewheader .fright a{background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat left 50%;padding-left:15px;line-height:170%;}


.papreviewheader .fright a.up{background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat left 50%;padding-left:15px;line-height:170%;}


#localfooter{height:1.2em;line-height:... repeat-x;xbackground-position-y:-1px;pad... 10px;position:relative;}


#weatherpreview .forcast{position:relative;top:4px;clear... 10px;margin-bottom:1.3em;font-size:92%;h...


#weatherpreview .forcast div{position:relative;float:left;width:4... url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat 100% 100%;}


#weatherpreview .tr, #weatherpreview .bl, #weatherpreview .tl{


position:absolute;


width:10px;


height:10px;


background:#F7FAFC url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat right bottom;


}


#weatherpreview .tr{


top:-3px;


right:0;


background-position:right top;


}


#weatherpreview .tl{


top:-4px;


left:-4px;


background-position:left top;


}


#weatherpreview .bl{


bottom:0;


left:-3px;


background-position:left bottom;


}


#weatherpreview .forcast .tomorrow{float:right;}


#weatherpreview dl{margin:7px 0 5px 12px;min-height:60px;*height:60px;}


#weatherpreview dt{padding:0;margin:0;font-weight:bold;p...


#weatherpreview dd{padding:3px 0;margin:0;padding-left:40px;line-height... verdana;}


#weatherpreview dd.info{font:92% verdana;}


#weatherpreview dd em{font-style:normal;font-weight:bold;}


#weatherpreview .high{color:#F46227;padding-right:4px;}


#weatherpreview .low{color:#00B2EB;padding-right:4px;}


#weatherpreview .info{display:inline;}


#weatherfooter{position:absolute;botto... verdana;}


#weatherfooter .fleft{float:left;}


#weatherfooter .extended{float:right;font-weight:bold;t...


.ulmform{


position:relative;


padding:9px;


margin:0;


border:2px solid #95ADB7;


background:#ffc;


zoom:1;


}


.nocookie form.ulmform{


margin:10px 10px 0;


}


.ulmform fieldset{


*position:relative;


padding:0 0 0 59px;


margin:0;


background:url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat 10px 22px;


zoom:1;


}


#weatherpreview .ulmform fieldset{background:#ffc url(http://us.i1.yimg.com/us.yimg.com/i/ww/t... no-repeat 9px 50%;}


.ulmform fieldset.invalid{


margin:-5px 0 -4px;


}


.ulmform input{


margin:0 5px 0 0;


}


.ulmform label{


margin:3px 0;


_margin:2px 0;


display:block;


font:92% arial;


}


.ulmform fieldset.cl{


padding-top:4px;


padding-bottom:5px;


}


.ulmform #csz, .ulmform .inputtext{


width:13em;


*width:12.5em;


_width:13em;


_height:22px;


padding:2px;


margin-left:0;


}


#ulmdefault, input.ulmdefault{


*margin:-1px 0 0 -3px;


}


#ulmdefaultlbl, .ulmdefault, label.ulmdefaultlbl{


left:0;


margin:3px 0;


*margin:1px 0;


font-size:85%;


}


.ulmform fieldset.cl #ulmdefaultlbl, .ulmform fieldset.cl .ulmdefaultlbl{


maring:5px 0 7px;


}


.ulmform .alert, .cszlabelinvalid{


color:red;


}


.ulmform .nonus{


margin:-4px;


margin-top:-9px;


padding-left:35px;


background-position:0 30px;


}


.ulmform .nonus #csz{


margin-left:5px;


}


.ulmform .nonus #cszlabel{


margin-right:-5px;


}


.ulmform fieldset.picklist{


border:1px solid #ccc;


padding:10px 0 10px 65px;


}


#picklist dl{


margin:6px 0 10px;


padding:3px;


height:67px;


border:1px solid #ccc;


overflow:auto;


background:#fff;


}


#picklist dt{


font-weight:bold;


}


#picklist dd{


padding:0 0 0 20px;


}


#picklist a{


display:block;


}


.ad{


text-align:center;


margin-bottom:9px;


}


.ad table{


margin:0 auto;


}


#pulse{


position:relative;


min-height:202px;


_height:201px;


}


#pulse .btn-more{


z-index:50;


}


#popsearch{height:11.3em;*height:11.6e...


#popsearch span{font:normal 92% arial;}


#popsearch .bd{padding:16px 3px .5em 3px;}


#popsearch ol{float:left;width:49.5%;}


#popsearch li:after{content:".";display:block;font-...


#popsearch li{


border:1px solid transparent;


_border:0;


padding-left:16px;


padding-right:3px;


margin-bottom:6px;


font:bold 77%/150% verdana;


background:url(http://us.i1.yimg.com/us.yimg.com/i/puls... 0 0 no-repeat;


}


#popsearch li.tt1{background-position:0 -1px;}


#popsearch li.tt2{background-position:0 -39px;}


#popsearch li.tt3{background-position:0 -77px;}


#popsearch li.tt4{background-position:0 -115px;}


#popsearch li.tt5{background-position:0 -153px;}


#popsearch li.tt6{background-position:0 -190px;}


#popsearch li.tt7{background-position:0 -229px;}


#popsearch li.tt8{background-position:0 -267px;}


#popsearch li a{display:block;margin-top:1px;*margin-t...


#popsearch li a{float:left;}


#footer{


clear:both;


text-align:center;


padding:10px 0;


margin:0 0 10px 10px;


}


#footer .strong{


font-weight:bold;


}


#footer ul{


margin-bottom:3px;


}


#footer li{


display:inline;


padding:0 0 0 5px;


margin: 0 0 0 2px;


border-left-width:1px;


border-left-style:solid;


}


#footer li.first{


border:0;


padding-left:0;


margin-left:0;


}


%26lt;/style%26gt;


%26lt;script type="text/javascript"%26gt;


now=new Date;


t2=now.getTime();


%26lt;/script%26gt;


%26lt;/head%26gt;


%26lt;body class="ywide"%26gt;


%26lt;div id="page"%26gt;


%26lt;div id="masthead"%26gt;


%26lt;div id="mastheadhd"%26gt;


%26lt;div id="eyebrow"%26gt;


%26lt;ul id="ypromo"%26gt;


%26lt;li id="toolbar"%26gt;%26lt;a id="dtba" class="eyebrowborder" href="r/tb"%26gt;%26lt;span id="tba"%26gt;Get%26lt;/span%26gt; Y! Toolbar%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a id="sethomepage" href="r/hp"%26gt;%26lt;strong%26gt;Make Y! your home page%26lt;/strong%26gt;%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;div id="ffhpcx"%26gt;%26lt;/div%26gt;


%26lt;div id="headline"%26gt;


%26lt;span%26gt;%26lt;A href="http://us.ard.yahoo.com/SIG=12kn4p...


Yahoo! Autos%26lt;/A%26gt;: New 2007 %26lt;A href="http://us.ard.yahoo.com/SIG=12kn4p...


SUVs%26lt;/A%26gt;, %26lt;A href="http://us.ard.yahoo.com/SIG=12kn4p...


Hybrids%26lt;/A%26gt;, %26lt;A href="http://us.ard.yahoo.com/SIG=12kn4p...


Sedans%26lt;/A%26gt;, %26lt;A href="http://us.ard.yahoo.com/SIG=12kn4p...


Coupes%26lt;/A%26gt;, %26amp; %26lt;A href="http://us.ard.yahoo.com/SIG=12kn4p...


Sports Cars%26lt;/A%26gt;%26lt;/span%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;script language="javascript" type="text/javascript"%26gt;


var eDs = document.getElementById('defaultsearch')...


if(eDs%26amp;%26amp;eDs.style.display=='none'){


document.getElementById('eyebrow').sty...


}


YAHOO.Fp.hm=document.getElementById('s...


YAHOO.Fp.hp=1;


YAHOO.Fp.cp=0;


YAHOO.Fp.checkToolbar = function(){


var cpre=/ CP=v=(\d+)%26amp;br=(.)/,cpv,cpbr,c=' '+document.cookie;


if(c.match(cpre)){


YAHOO.Fp.cp=1;


cpv=RegExp.$1;


cpbr=RegExp.$2;


if((cpbr=='i'%26amp;%26amp;cpv%26lt;60100)||(cpbr=='f'%26amp;...


YAHOO.Fp.cp=0;


if (document.getElementById('tba')) { document.getElementById('tba').innerHTML... }


}else{


YAHOO.Fp.cp=1;


if (document.getElementById('toolbar')) {document.getElementById('toolbar').inne... id="dtba" href=\'r\/1m\'%26gt;Get Yahoo! DSL%26lt;/a%26gt;'; }


}


}


}


YAHOO.Fp.checkToolbar();


%26lt;/script%26gt;


%26lt;!--[if IE]%26gt;


%26lt;a id="ieshp"%26gt;%26lt;/a%26gt;


%26lt;script language="javascript" type="text/javascript"%26gt;


YAHOO.Fp.checkHomePage = function(){


YAHOO.Fp.sp='http://'+location.hostnam...


_ieshp=document.getElementById("ieshp"...


_ieshp.style.behavior='url(#default#ho...


// rLink: onclick tracking, isWs: if clicked came from windowshade, true or false.


var setHomePage=function(rLink,isWs){


YAHOO.Fp.beacon(rLink, true);


_ieshp.setHomePage(YAHOO.Fp.sp);


YAHOO.Fp.checkSHP(isWs);


return false;


}


YAHOO.Fp.hm.onclick = function(){setHomePage('r/hz'); return false;};


var eHp = document.getElementById('hp_set');


if(eHp){eHp.onclick = function(){setHomePage('r/hg', true); return false;};}


YAHOO.Fp.hp=(_ieshp.isHomePage(YAHOO.F...


}


YAHOO.Fp.checkHomePage();


YAHOO.Fp.checkSHP = function(isWs){


var _hp=(_ieshp.isHomePage(YAHOO.Fp.sp)||_ie...


var rLink = (isWs)? (_hp?'r/hl':'r/hm') : (_hp?'r/hy':'r/hx');


YAHOO.Fp.beacon(rLink, true);


if(_hp){


YAHOO.Fp.shp=1;


YAHOO.cookie.set("HP","1","","","yahoo...


alert("Your home page is now Yahoo!\nThe home button of your browser goes directly to Yahoo!");


YAHOO.Fp.eyebrow();


if(YAHOO.Fp.WindowShade){


YAHOO.Fp.WindowShade.hide();


}


}


}


%26lt;/script%26gt;


%26lt;![endif]--%26gt;


%26lt;script language="javascript" type="text/javascript"%26gt;


YAHOO.Fp.shp=1;


YAHOO.Fp._hpc=YAHOO.cookie.get("HP");


YAHOO.Fp._hlr=(window.history.length==...


if( (YAHOO.Fp._ie==1 %26amp;%26amp; YAHOO.Fp.hp) ||


(YAHOO.Fp._ff==1 %26amp;%26amp; YAHOO.Fp._hlr) ){


YAHOO.cookie.set("HP","1","","","yahoo...


}else if(YAHOO.cookie.get("HP")==""){


YAHOO.Fp.shp=0;


}


if(YAHOO.Fp.shp==1%26amp;%26amp;document.getElemen...


document.getElementById('ws_hp').style... = 'block';


}


YAHOO.Fp.scp=((YAHOO.Fp._ie%26amp;%26amp;!YAHOO.Fp...


YAHOO.Fp.eyebrow = function(){


document.getElementById('ypromo').styl...


document.getElementById('dtba').classN...


document.getElementById('sethomepage')...


if (document.getElementById('toolbar')) {document.getElementById('toolbar').styl...


}


YAHOO.Fp.eyebrow();


%26lt;/script%26gt;


%26lt;![if !IE]%26gt;


%26lt;script language="javascript" type="text/javascript"%26gt;


if(YAHOO.Fp._ff){


var hm=document.getElementById('sethomepage'...


hm.href=YAHOO.Fp._ylh+'r/hq';


if (typeof(app_c_pp)!='undefined') app_c_pp('hpf',YAHOO.Fp.shp?1:0);


cc='%26amp;hpf='+(YAHOO.Fp.shp?1:0);


hm.style.position = 'relative';


hm.onclick=function(){


if(!YAHOO.util.Event){


document.location = hm.href;


return;


}


var shpd = document.getElementById('shpd')


if(!shpd){


shpd=document.createElement('div');


shpd.id='shpd';


shpd.className='shdw';


shpd.innerHTML='%26lt;div class=bd%26gt;%26lt;div id=pnt%26gt;%26lt;/div%26gt;%26lt;a title="Yahoo!" class=shp href="http://www.yahoo.com/"%26gt;%26lt;strong%26gt;Yah... the "Y!" and drop it onto the "House" icon.%26lt;/li%26gt;%26lt;li%26gt;Select "Yes" from the pop up window.%26lt;/li%26gt;%26lt;li%26gt;Nothing, you're done.%26lt;/li%26gt;%26lt;/ol%26gt;%26lt;div class=hr%26gt;%26lt;/div%26gt;%26lt;p%26gt;If this didn't work for you or you want more detailed instructions %26lt;a href=http://www.yahoo.com/r/hs%26gt;click here%26lt;/a%26gt;.%26lt;/p%26gt;%26lt;/div%26gt;';


hm.parentNode.appendChild(shpd);


YAHOO.util.Event.addListener(document, 'click', function(){document.getElementById('shpd...


}


shpd.style.display = 'block';


var bcn=new Image;bcn.src="r/hf";


return false;


}


}


%26lt;/script%26gt;


%26lt;![endif]%26gt;


%26lt;/div%26gt;


%26lt;div id="mastheadbd"%26gt;


%26lt;span class="top"%26gt;%26lt;/span%26gt;


%26lt;h1%26gt;%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... border=0 width=232 height=44 alt="Yahoo!" id="ylogo"%26gt;


%26lt;script language=javascript%26gt;


if(typeof(YAHOO)!='undefined') {


document.write('%26lt;map name="yodel"%26gt;%26lt;area shape="rect" coords="209,30,216,39" href="http://www.yahoo.com" onclick="callYodel();return false;"%26gt;%26lt;area shape="poly" coords="211,0,222,1,215,26,211,25" href="http://www.yahoo.com" onclick="callYodel();return false;"%26gt;%26lt;/map%26gt;%26lt;div id=l_fl style="position:absolute"%26gt;%26lt;/div%26gt;');


var lr0='http://us.ard.yahoo.com/SIG=12l2joq...


var lcap=0,lncap=0,ad_jsl=0,lnfv=6,ylmap=0;


var ldir="http://us.i1.yimg.com/us.yimg.com/...


var swfl1=ldir+"yodel.swf";


var swflw=1,swflh=1;


}


function loadYodel(p) {


var sp=(p==1)?['FlashVars','startplay=1']:['...


if(YAHOO.Fp._ie) ad_embedObj('swf','l1','l_fl',swflw,swfl...


elsead_embedObj('swf','l1','l_fl','','...


if(!ylmap) { ad_el('ylogo').useMap='#yodel'; ylmap=1; }


}


function callYodel() {


var img=new Image;


img.src='http://srd.yahoo.com/'+(lr0?l...


loadYodel(1);


}


function yodelCheckFlash() {


if(YAHOO.Fp._ie) document.write('%26lt;scr'+'ipt language=vbscript\%26gt;\non error resume next\nlcap=(IsObject(CreateObject("Shock...


else {


var plugin=(window.navigator.plugins["Shockw... Flash"])?window.navigator.plugins["Shock... Flash"].description:0;


if (plugin) {


if (plugin.charAt(plugin.indexOf('.')-1)%26gt;=l... lncap=1;


}


}


if (lcap||lncap)return true;


else return false;


}


%26lt;/script%26gt;


%26lt;script language="javascript" type="text/javascript" src="http://us.js2.yimg.com/us.yimg.com/...


%26lt;script language=javascript%26gt;


if(typeof(YAHOO)!='undefined'%26amp;%26amp;ad_jsl%26amp;... {


if (window.attachEvent) window.attachEvent('onload', loadYodel);


else if (window.addEventListener) window.addEventListener('load', loadYodel, 0);


}


%26lt;/script%26gt;%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['_iShJkLEYpU-']='%26amp;U=13bc2...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT...


%26lt;div id="searchwrapper"%26gt;


%26lt;div id="searchIE"%26gt;


%26lt;/div%26gt;


%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... id="searchother" alt=""%26gt;%26lt;form name="sf1" id="search" action="r/sx/*-http://search.yahoo.com/s...


%26lt;fieldset%26gt;


%26lt;legend%26gt;Yahoo! Search%26lt;/legend%26gt;


%26lt;ul id="vsearchtabs"%26gt;%26lt;li class="first on"%26gt;%26lt;a href="r/sx/*-http://search.yahoo.com/sea... href="r/00/*-http://images.search.yahoo.... href="r/14/*-http://video.search.yahoo.c... href="r/0w/*-http://local.yahoo.com/resu... href="r/06/*-http://shopping.yahoo.com/s... class="last ignore"%26gt;%26lt;dl id="vsearchm"%26gt;%26lt;dt%26gt;%26lt;a id="vsearchmore" href="r/bv"%26gt;More%26lt;/a%26gt;%26lt;/dt%26gt;%26lt;dd id="vslist"%26gt;%26lt;/dd%26gt;%26lt;/dl%26gt;%26lt;/li%26gt;%26lt;/ul%26gt;


%26lt;div id="sbox"%26gt;


%26lt;label id="searchlabel" for="p"%26gt;Search:%26lt;/label%26gt;


%26lt;div id="searchbox"%26gt;


%26lt;input class="plong inputtext" type="text" id="p" name="p" accesskey="s"%26gt;


%26lt;/div%26gt;


%26lt;span id="searchbtn"%26gt;


%26lt;input type="submit" id="searchsubmit" class="btn-more-2" value="Web Search"%26gt;


%26lt;/span%26gt;


%26lt;noscript%26gt;%26lt;input name="u" type="hidden" value="http://search.yahoo.com/search?fr...


%26lt;input type="hidden" name="fr" value="yfp"%26gt;


%26lt;input type="hidden" name="toggle" value="1"%26gt;


%26lt;input type="hidden" name="cop" value="mss"%26gt;


%26lt;input type="hidden" name="ei" value="UTF-8"%26gt;


%26lt;script language="javascript"%26gt;


document.sf1.p.focus();


document.sf1.action = "r/sx/*-http://search.yahoo.com/search";


YAHOO.Fp.sFrPrefix = document.sf1.fr.value;


if(document.sf1.fr.value.indexOf('-t-'... = YAHOO.Fp.sFrPrefix+(typeof(ver)!='undefi...


%26lt;/script%26gt;


%26lt;/div%26gt;


%26lt;div id="sboxfooter"%26gt;


%26lt;html%26gt;%26lt;span class="answers"%26gt;%26lt;a class="yans" href="http://us.ard.yahoo.com/SIG=12l5na... Answers:%26lt;/a%26gt; %26lt;a href="http://us.ard.yahoo.com/SIG=12l5na... do I tame frizzy hair? Find out%26lt;/a%26gt;%26lt;/span%26gt;%26lt;/html%26gt;%26lt;/div%26gt;


%26lt;/fieldset%26gt;


%26lt;/form%26gt;


%26lt;/div%26gt;


%26lt;script type="text/javascript"%26gt;


now=new Date;


t3=now.getTime();


%26lt;/script%26gt;


%26lt;div class="mh_footer"%26gt;


%26lt;div id="doors" class="hd"%26gt;


%26lt;h3 class="a11y"%26gt;Popular Yahoo! Properties%26lt;/h3%26gt;


%26lt;ul id="doors-links" class="fixfloat"%26gt;


%26lt;li%26gt;%26lt;strong%26gt;%26lt;a href="r/i1" title="Go to My Yahoo!"%26gt;My Yahoo!%26lt;/a%26gt;%26lt;/strong%26gt;%26lt;/li%26gt;%26lt;!-- SpaceID=2716149 loc=FDMY noad --%26gt;


%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['ACWhJkLEYpU-']='%26amp;U=128je...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT... href="r/m1" title="Go to Yahoo! Mail"%26gt;My Mail%26lt;/a%26gt;%26lt;/strong%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;div id="pagesettingscx"%26gt;


%26lt;a href="r/tp" id="editpage"%26gt;Page Options%26lt;/a%26gt;


%26lt;div id="pagesettings"%26gt;


%26lt;div class="bd"%26gt;


%26lt;span%26gt;


%26lt;div class="iemw"%26gt;%26lt;/div%26gt;


%26lt;div id="pscolors"%26gt;


%26lt;h4%26gt;Color:%26lt;/h4%26gt;


%26lt;ol id="themes"%26gt;


%26lt;li%26gt;%26lt;a id="t1" class="on" title="Ocean"%26gt;Ocean%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a id="t4" title="Tangerine"%26gt;Tangerine%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a id="t3" title="Violet"%26gt;Violet%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a id="t2" title="Oyster"%26gt;Oyster%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a id="t5" title="Grass"%26gt;Grass%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a id="t7" title="Pink"%26gt;Pink%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ol%26gt;


%26lt;/div%26gt;


%26lt;a id="sizetogglelink" href="r/ty"%26gt;Switch to narrow layout%26lt;/a%26gt;


%26lt;/span%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;div id="mastheadft"%26gt;%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;div id="semitranslayer"%26gt;%26lt;div class="iemw"%26gt;%26lt;/div%26gt;%26lt;/div%26gt;


%26lt;div id="colcx"%26gt;


%26lt;div id="left"%26gt;


%26lt;div id="trough" class="md"%26gt;


%26lt;div class="bd"%26gt;


%26lt;div id="trough-cols" class="fixfloat"%26gt;


%26lt;ul id="trough-1" class="col1"%26gt;


%26lt;li%26gt;%26lt;a style="background-position:-400px -439px" href="r/2h"%26gt;Autos%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -760px" href="r/25"%26gt;Finance%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -1600px" href="r/28"%26gt;Games%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -199px" href="r/44"%26gt;GeoCities%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -1399px" href="r/2r"%26gt;Groups%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -439px" href="r/3o"%26gt;HotJobs%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -599px" href="r/24"%26gt;Maps%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -559px" href="r/2i"%26gt;Movies%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -1560px" href="r/3m"%26gt;Music%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -40px" href="r/33"%26gt;Personals%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -840px" href="r/3e"%26gt;Photos%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:-400px -159px" href="r/2p"%26gt;Real Estate%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -1639px" href="r/2q"%26gt;Shopping%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -799px" href="r/26"%26gt;Sports%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:-400px -237px" href="r/4c"%26gt;Tech%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -79px" href="r/29"%26gt;Travel%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -999px" href="r/2j"%26gt;TV%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a style="background-position:0 -120px" href="r/2k"%26gt;Yellow Pages%26lt;/a%26gt;%26lt;/li%26gt;





%26lt;/ul%26gt;





%26lt;ul class="col1 trough-promo" id="trough-promo"%26gt;


%26lt;li class="first"%26gt;%26lt;a style="background-position: -400px -640px;" href=r/4q%26gt;Food %26lt;small class="new"%26gt;%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... /%26gt;%26lt;/small%26gt;%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li class="last"%26gt;%26lt;a style="background-position: -400px -600px;" href=r/4o%26gt;Video %26lt;small class="new"%26gt;%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... /%26gt;%26lt;/small%26gt;%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;span id="allyservicescx"%26gt;


%26lt;a href="r/xy" id="allyservices" class="btn-more-2" title="View the complete list of Yahoo! Services"%26gt;More Yahoo! Services%26lt;/a%26gt;


%26lt;/span%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;div id="minimantle" class="md minimantle"%26gt;


%26lt;div id="smallbiz" class="md-sub"%26gt;


%26lt;div class="hd"%26gt;%26lt;h2%26gt;%26lt;a href="r/c9"%26gt;Small Business%26lt;/a%26gt;%26lt;/h2%26gt;%26lt;/div%26gt;


%26lt;ul id="smallbiz-links"%26gt;


%26lt;li%26gt;%26lt;a href="r/h9"%26gt;Web Hosting%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/d9"%26gt;Domain Names%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/e9"%26gt;Sell Online%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/o9"%26gt;Search Listings%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;div class="md minimantle"%26gt;


%26lt;div id="advertising" class="md-sub"%26gt;


%26lt;div class="hd"%26gt;%26lt;h2%26gt;%26lt;a href="r/b9"%26gt;Featured Services%26lt;/a%26gt;%26lt;/h2%26gt;%26lt;/div%26gt;


%26lt;ul id="advertising-links"%26gt;


%26lt;li%26gt;%26lt;a href="r/do"%26gt;Downloads%26lt;/a%26gt;%26lt;!-- SpaceID=2716149 loc=TST1 noad-spid --%26gt;


%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/wp"%26gt;Health%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/k3"%26gt;Kids%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/ov"%26gt;Mobile%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/fb"%26gt;Voice%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12j6qo... Website%26lt;/a%26gt;%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['AiWhJkLEYpU-']='%26amp;U=139lm...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT...


%26lt;li%26gt;%26lt;a href="r/wr"%26gt;Y! International%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;div id="rightcx"%26gt;


%26lt;div id="middle"%26gt;


%26lt;div class="colpadding"%26gt;


%26lt;div id="today" class="md"%26gt;


%26lt;div class="hd tabs"%26gt;


%26lt;h3 class="a11y"%26gt;Featured Navigation%26lt;/h3%26gt;


%26lt;ul id="todaytabs"%26gt;


%26lt;li class="on first"%26gt;


%26lt;em%26gt;%26lt;a hidefocus="true" id="featured1" href="r/tj"%26gt;Featured%26lt;/a%26gt;%26lt;/em%26gt;


%26lt;span class="pipe"%26gt;%26lt;/span%26gt;


%26lt;/li%26gt;


%26lt;li class="tab2"%26gt;


%26lt;em%26gt;%26lt;a hidefocus="true" id="entertainment1" href="r/e8"%26gt;Entertainment%26lt;/a%26gt;%26lt;/em%26gt;


%26lt;span class="pipe"%26gt;%26lt;/span%26gt;


%26lt;/li%26gt;


%26lt;li class="tab3"%26gt;


%26lt;em%26gt;%26lt;a hidefocus="true" id="sports1" href="r/sm"%26gt;Sports%26lt;/a%26gt;%26lt;/em%26gt;


%26lt;span class="pipe"%26gt;%26lt;/span%26gt;


%26lt;/li%26gt;


%26lt;li class="last"%26gt;


%26lt;em%26gt;%26lt;a hidefocus="true" id="money1" href="r/wq"%26gt;Life%26lt;/a%26gt;%26lt;/em%26gt;


%26lt;span class="pipe"%26gt;%26lt;/span%26gt;


%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;div id="todaybd" class="bd"%26gt;


%26lt;span id="featured1ct" class="current"%26gt;


%26lt;cite class="timestamp"%26gt; %26lt;/cite%26gt;


%26lt;a href=s/481832%26gt;%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... width="154" height="115" alt="Kate Winslet at SAG Awards source WireImage"%26gt;%26lt;/a%26gt;


%26lt;span%26gt;


%26lt;h3%26gt;%26lt;a href=s/481832%26gt;Globes with less goodies?%26lt;/a%26gt;%26lt;/h3%26gt;


%26lt;p%26gt;Last year's Globes gift bag was worth $40,000. This year's is $600. %26lt;a class=more href=s/481832%26gt;» More%26lt;/a%26gt;%26lt;/p%26gt;


%26lt;ul%26gt;


%26lt;li%26gt;%26lt;a class=slideshow href=s/481833%26gt;See nominees' photos%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a class=bullet href=s/481834%26gt;Golden Globe movie nominees%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a class=bullet href=s/481835%26gt;Golden Globe TV nominees%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/span%26gt;


%26lt;/span%26gt;


%26lt;span id="featured2ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="featured3ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="featured4ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="entertainment1ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="entertainment2ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="entertainment3ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="entertainment4ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="sports1ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="sports2ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="sports3ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="sports4ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="money1ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="money2ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="money3ct"%26gt;


%26lt;/span%26gt;


%26lt;span id="money4ct"%26gt;


%26lt;/span%26gt;


%26lt;/div%26gt;


%26lt;div id="todayft" class="ft"%26gt;


%26lt;span id="footer1" class="current"%26gt;


%26lt;ul id="todaystories1"%26gt;


%26lt;li id="featured1|287" class="on"%26gt;%26lt;a href=s/481836%26gt;%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... alt="" width="29" height="21"%26gt;Golden Globe gift bags contain less goodies%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li id="featured2|273"%26gt;%26lt;a href=s/481766%26gt;%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... alt="" width="29" height="21"%26gt;Take a closer look at Apple's iPhone%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;ul%26gt;


%26lt;li id="featured3|250"%26gt;%26lt;a href=s/481669%26gt;%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... alt="" width="29" height="21"%26gt;Five reasons '24' will surprise you%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li id="featured4|289"%26gt;%26lt;a href=s/481850%26gt;%26lt;img src="http://us.i1.yimg.com/us.yimg.com/i... alt="" width="29" height="21"%26gt;Preview the weekend's NFL playoff games%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;div id="more-featured" class="btn-more"%26gt;%26lt;b%26gt;»


%26lt;a href=r/tm%26gt;More Featured%26lt;/a%26gt;%26lt;/b%26gt;%26lt;/div%26gt;


%26lt;/span%26gt;


%26lt;span id="footer2"%26gt;


%26lt;/span%26gt;


%26lt;span id="footer3"%26gt;


%26lt;/span%26gt;


%26lt;span id="footer4"%26gt;


%26lt;/span%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;div id="adwest" class="ad"%26gt;


%26lt;/div%26gt;


%26lt;script type="text/javascript"%26gt;now=new Date;t5=now.getTime();%26lt;/script%26gt;


%26lt;div id="news" class="md"%26gt;


%26lt;div class="hd tabs"%26gt;


%26lt;h3 class="a11y"%26gt;News Navigation%26lt;/h3%26gt;


%26lt;ul id="newstabs"%26gt;


%26lt;li class="on first"%26gt;


%26lt;em%26gt;%26lt;a hidefocus="true" id="inthenews2" href="r/nb"%26gt;In the News%26lt;/a%26gt;%26lt;/em%26gt;


%26lt;span class="pipe"%26gt;%26lt;/span%26gt;


%26lt;/li%26gt;


%26lt;li class="tab2"%26gt;


%26lt;em%26gt;%26lt;a hidefocus="true" id="worldnews" href="r/1a"%26gt;World%26lt;/a%26gt;%26lt;/em%26gt;


%26lt;span class="pipe"%26gt;%26lt;/span%26gt;


%26lt;/li%26gt;


%26lt;li class="tab3"%26gt;


%26lt;em%26gt;%26lt;a hidefocus="true" id="localnews" href="r/n4"%26gt;Local%26lt;/a%26gt;%26lt;/em%26gt;


%26lt;span class="pipe"%26gt;%26lt;/span%26gt;


%26lt;/li%26gt;


%26lt;li class="last"%26gt;


%26lt;em%26gt;%26lt;a hidefocus="true" id="videonews" href="r/1b"%26gt;Video%26lt;/a%26gt;%26lt;/em%26gt;


%26lt;span class="pipe"%26gt;%26lt;/span%26gt;


%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;div id="newsbd" class="bd"%26gt;


%26lt;span id="inthenews2ct" class="current"%26gt;


%26lt;h2 class="a11y"%26gt;In the News%26lt;/h2%26gt;


%26lt;div id="newstop"%26gt;


%26lt;cite class="timestamp"%26gt; %26lt;/cite%26gt;


• %26lt;a href=s/481851%26gt;Bush plan supporters, critics spar over policy%26lt;/a%26gt;%26lt;dl class="inline"%26gt;%26lt;dt%26gt;%26lt;a class=video href=s/481375 onclick="window.open('s/481375','playerW... false;"%26gt;Congress reacts%26lt;/a%26gt;%26lt;/dt%26gt;%26lt;/dl%26gt;%26lt;br%26gt;• %26lt;a href=s/481824%26gt;Peacekeepers may face Iraq-style insurgency in Somalia%26lt;/a%26gt;%26lt;br%26gt;• %26lt;a href=s/481747%26gt;One dead, eight missing in stormy Britain seas%26lt;/a%26gt;%26lt;br%26gt;• %26lt;a href=s/481741%26gt;Two missing boys found alive in Missouri home%26lt;/a%26gt;%26lt;br%26gt;• %26lt;a href=s/481826%26gt;Duke case prosecutor asks to be removed%26lt;/a%26gt;%26lt;dl class="inline"%26gt;%26lt;dt%26gt;%26lt;a class=video href=s/481831 onclick="window.open('s/481831','playerW... false;"%26gt;Ethics charges%26lt;/a%26gt;%26lt;/dt%26gt;%26lt;/dl%26gt;%26lt;br%26gt;• %26lt;a href=s/481837%26gt;Archaeologists find ancient stone tools in Minnesota%26lt;/a%26gt;%26lt;br%26gt;• %26lt;a href=s/481803%26gt;Ousted Nevada beauty queen signs variety show deal%26lt;/a%26gt;%26lt;br%26gt;


• %26lt;a href=s/379502%26gt;NFL%26lt;/a%26gt; ·


%26lt;a href=s/436844%26gt;NCAA Basketball%26lt;/a%26gt; ·


%26lt;a href=s/404909%26gt;NBA%26lt;/a%26gt; ·


%26lt;a href=s/404910%26gt;NHL%26lt;/a%26gt; ·


%26lt;a href=s/380904%26gt;Soccer%26lt;/a%26gt;%26lt;br%26gt;


%26lt;ul id="more-news" class="btn-more"%26gt;%26lt;li class="first"%26gt;%26lt;b%26gt;»%26lt;/b%26gt; More:%26lt;/li%26gt;%26lt;li%26gt;%26lt;a href=r/xn%26gt;News%26lt;/a%26gt;%26lt;/li%26gt;%26lt;li%26gt;%26lt;a href=r/me%26gt;Popular%26lt;/a%26gt;%26lt;/li%26gt;%26lt;li class="last"%26gt;%26lt;a href=r/vb%26gt;Business%26lt;/a%26gt;%26lt;/li%26gt;%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;div id="newsft"%26gt;


%26lt;div id="newsbottom"%26gt;


%26lt;div id="finance-data"%26gt;


%26lt;div id="markets"%26gt;%26lt;h3%26gt;%26lt;a href="r/f3"%26gt;Markets:%26lt;/a%26gt;%26lt;/h3%26gt;%26lt;ul%26gt;%26lt;li%26gt;%26lt;st... %26lt;span class="up"%26gt;+0.3%%26lt;/span%26gt;%26lt;/strong%26gt;%26lt;/li%26gt;%26lt;li... %26lt;span class="up"%26gt;+0.7%%26lt;/span%26gt;%26lt;/strong%26gt;%26lt;/li%26gt;%26lt;/u... language="javascript" type="text/javascript"%26gt;document.getEleme... afterhours";%26lt;/script%26gt;%26lt;/div%26gt;


%26lt;div id="news-sponsor"%26gt;


%26lt;style type="text/css"%26gt;


#news-sponsor img{


position:relative;


display:block;


margin:0;


}


#news.afterhours #news-sponsor img{


display:inline;


position:relative;


top:10px;


}


%26lt;style type="text/css"%26gt;#news-sponsor img{position:relative;display:block;marg... #news-sponsor img{display:inline;position:relative;top... href="http://us.ard.yahoo.com/SIG=12kobd... src="http://us.a2.yimg.com/us.yimg.com/a... border=0 width=165 height=15 alt="Open a no-fee IRA at Scottrade"%26gt;%26lt;/a%26gt;%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['AyWhJkLEYpU-']='%26amp;U=13atj...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT...


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/span%26gt;


%26lt;span id="worldnewsct"%26gt;


%26lt;/span%26gt;


%26lt;span id="localnewsct"%26gt;


%26lt;/span%26gt;


%26lt;span id="videonewsct" class="single-panel"%26gt;


%26lt;/span%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;script type="text/javascript"%26gt;now=new Date;t6=now.getTime();%26lt;/script%26gt;


%26lt;div id="marketplace" class="md"%26gt;


%26lt;div class="hd"%26gt;


%26lt;h2%26gt;%26lt;a href="r/0v" name="marketplace"%26gt;Marketplace%26lt;/a%26gt;%26lt;/h2%26gt;


%26lt;/div%26gt;


%26lt;div id="marketplacebd" class="bd"%26gt;


%26lt;table border=0 cellpadding=0 cellspacing=0 width="100%"%26gt;%26lt;tr%26gt;%26lt;td valign=top%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12js53... src="http://us.a2.yimg.com/us.yimg.com/a... width=70 height=50 border=0%26gt;%26lt;/a%26gt;%26lt;/td%26gt;%26lt;td width=8%26gt; %26lt;/td%26gt;%26lt;td valign=top%26gt;%26lt;font face=arial size=-1%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12js53... - only $5.99/month%26lt;/a%26gt;%26lt;br%26gt;You’ve heard of Netflix, now try us for free. No late fees, free shipping both ways and 70,000 titles.%26lt;/font%26gt;%26lt;/td%26gt;%26lt;/tr%26gt;%26lt;/table%26gt;%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['BCWhJkLEYpU-']='%26amp;U=139il...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT... size=1 noshade%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12jgrc... your home worth?%26lt;/a%26gt; - Instant home values. 70 million homes - %26lt;a href="http://us.ard.yahoo.com/SIG=12jgrc... any address: See area reports for free%26lt;/a%26gt;.%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['BSWhJkLEYpU-']='%26amp;U=13916...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT... size=1 noshade%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12jm8k... your credit score 560? 678? 720? - See it $0 by Experian%26lt;/a%26gt;.%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['BiWhJkLEYpU-']='%26amp;U=139ai...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT... size=1 noshade%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12ko39... near historic lows%26lt;/a%26gt; - Refinance $150k loan for only $495/ month - %26lt;a href="http://us.ard.yahoo.com/SIG=12ko39... here%26lt;/a%26gt;.%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['ByWhJkLEYpU-']='%26amp;U=13aor...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT...


%26lt;/div%26gt;


%26lt;script type="text/javascript"%26gt;now=new Date;t7=now.getTime();%26lt;/script%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;div id="right"%26gt;


%26lt;div class="colpadding"%26gt;


%26lt;div id="pa" class="md"%26gt;


%26lt;div id="pabd"%26gt;


%26lt;div id="patop"%26gt;





%26lt;ul id="reg" class="so"%26gt;


%26lt;li%26gt;Check your mail status: %26lt;a href="r/l6"%26gt;Sign In%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li id="signup"%26gt;Free mail: %26lt;a href="r/m7"%26gt;Sign Up%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;div id="patabs"%26gt;


%26lt;ul id="tabs1" class="patabs first"%26gt;


%26lt;li id="mail" class="first"%26gt;


%26lt;div%26gt;


%26lt;h4%26gt;


%26lt;a id="pamail" accesskey="m" href="r/m2"%26gt;%26lt;span class="icon"%26gt;Mail%26lt;/span%26gt;%26lt;/a%26gt;%26lt;/h4%26gt;


%26lt;/div%26gt;


%26lt;/li%26gt;


%26lt;li id="messenger"%26gt;


%26lt;div%26gt;


%26lt;h4%26gt;


%26lt;a id="pamsgr" href="r/p1"%26gt;%26lt;span class="icon"%26gt;Messenger%26lt;/span%26gt;%26lt;/a%26gt;


%26lt;/h4%26gt;


%26lt;/div%26gt;


%26lt;/li%26gt;


%26lt;li id="music" class="last"%26gt;


%26lt;div%26gt;


%26lt;h4%26gt;


%26lt;a id="pamusic" href="r/uf"%26gt;%26lt;span class="icon"%26gt;Radio%26lt;/span%26gt;%26lt;/a%26gt;


%26lt;/h4%26gt;


%26lt;/div%26gt;


%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;div id="tabs1previewdiv" class="papreviewdiv"%26gt;%26lt;/div%26gt;


%26lt;ul id="tabs2" class="patabs last"%26gt;


%26lt;li id="weather" class="first"%26gt;


%26lt;div%26gt;


%26lt;h4%26gt;


%26lt;a id="paweather" href="r/wa"%26gt;%26lt;span class="icon"%26gt;Weather%26lt;/span%26gt;%26lt;/a%26gt;%26lt;/h4%26gt;


%26lt;/div%26gt;


%26lt;/li%26gt;


%26lt;li id="traffic"%26gt;


%26lt;div%26gt;


%26lt;h4%26gt;


%26lt;a id="patraffic" href="r/0z"%26gt;%26lt;span class="icon"%26gt;Local%26lt;/span%26gt;%26lt;/a%26gt;


%26lt;/h4%26gt;


%26lt;/div%26gt;


%26lt;/li%26gt;


%26lt;li id="horoscope" class="last"%26gt;


%26lt;div%26gt;


%26lt;h4%26gt;


%26lt;a id="pahoroscope" href="r/h1"%26gt;%26lt;span class="icon"%26gt;Horoscopes%26lt;/span%26gt;%26lt;/a%26gt;


%26lt;/h4%26gt;


%26lt;/div%26gt;


%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;div id="tabs2previewdiv" class="papreviewdiv"%26gt;%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;script type="text/javascript"%26gt;


now=new Date;


t8=now.getTime();


%26lt;/script%26gt;


%26lt;div id="ad" class="ad"%26gt;


%26lt;script language=javascript%26gt;


r0='http://us.ard.yahoo.com/SIG=12lpg4...


var cap=0,ncap=0,ad_jsl=0,nfv=6;


var red=r0.substring(0,r0.length-5);


%26lt;/script%26gt;


%26lt;script language="javascript" type="text/javascript" src="http://us.js2.yimg.com/us.yimg.com/...


%26lt;script language=javascript%26gt;


var ired='http://www.wirefly.com/content.asp...


var sred=ired;


var tred=ired;


var text="24 Hour RAZR Sale";


var survey='http://surveylink.yahoo.com/wix/...


var dir='http://us.a2.yimg.com/us.yimg.com/a...


var img=dir+'350x200feB.gif';


var swf=dir+'350x200feB.swf';


function swfAction() {


location.href=red+'R=0/id=flash/*'+sre...


}


img='%26lt;A HREF="'+red+'R=1/id=img/*'+ired+'"%26gt;%26lt;IMG SRC="'+img+'" WIDTH=350 HEIGHT=200 BORDER=0 alt="'+text+'"%26gt;%26lt;/A%26gt;';


var plugin=(window.navigator.plugins["Shockw... Flash"]) ? window.navigator.plugins["Shockwave Flash"].description:0;


if (plugin) {


if (plugin.charAt(plugin.indexOf('.')-1)%26gt;=n... ncap=1;


}


else if (window.navigator.userAgent.indexOf("MSI... ")%26gt;=0 %26amp;%26amp; window.navigator.userAgent.indexOf("Wind... {


document.write('%26lt;script language=vbscript\%26gt;\non error resume next\ncap=(IsObject(CreateObject("Shockw...


}


document.write('%26lt;table border=0 width=350 cellpadding=0 cellspacing=0%26gt;%26lt;tr%26gt;%26lt;td align=center%26gt;');


if(ad_jsl) {


if (cap) {


ad_embedObj('swf','1','','350','200',a...


} else if (ncap) {


ad_embedObj('swf','1','','','',ad_para...


}


else document.write(img);


}


else document.write(img);


document.write('%26lt;/td%26gt;%26lt;/tr%26gt;%26lt;tr%26gt;%26lt;td align=center%26gt;%26lt;font face=verdana size=-2%26gt;%26lt;b%26gt;%26lt;a href="'+red+'R=3/id=txt/*'+tred+'"%26gt;'+tex... - %26lt;a href="'+red+'R=2/id=survey/*'+survey+'" target="_blank"%26gt;Ad Feedback%26lt;/a%26gt;%26lt;/font%26gt;%26lt;/td%26gt;%26lt;/tr%26gt;%26lt;/table%26gt;');


%26lt;/script%26gt;%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['CCWhJkLEYpU-']='%26amp;U=13bsr...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT...


%26lt;script type="text/javascript"%26gt;


now=new Date;


t9=now.getTime();


%26lt;/script%26gt;


%26lt;div id="mantlecx"%26gt;


%26lt;div id="mantle"%26gt;


%26lt;style%26gt;


#mantle2 {_height:103px; min-height:103px;}


#mantle2 .bd { position:relative; padding-left:110px;}


#mantle2 a.img { display:block; position:absolute; top: 6px; left: 8px; height:68px;_height:72px; width:92px; _width:96px; margin:0; padding:1px; background:url(http://us.i1.yimg.com/us.yimg.com/i/mntl... 1px 1px no-repeat; border:1px solid #9cafbd; border-color:#9cafbd #9cafbd #647684 #647684;}


#mantle2 h3 {font:bold 100% arial;color:#6a6a6a;margin-bottom:3px;}


#mantle2 ul {font:77% verdana; float:left; min-height:2.8em; _height:2.5em;}


#mantle2 ul.col1 {width:47%;}


#mantle2 ul.col2 {width:35%;}


#mantle2 ul.col3 {width:18%;}


#mantle2 .bd form {width:97%;}


#mantle2 .bd form label, #mantle2 .bd form input {font:77%/100% verdana;}


#mantle2 .bd form input {margin-top:3px;}


#srch {width:9.5em;}


#mantle2 .bd form label {color:#6a6a6a; width:33%;}


%26lt;/style%26gt;


%26lt;div id="mantle2" class="md"%26gt;


%26lt;div class="hd"%26gt;


%26lt;h2%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12k3nu... Yahoo! Search%26lt;/a%26gt;%26lt;/h2%26gt;


%26lt;/div%26gt;


%26lt;div class="bd"%26gt;


%26lt;a href="http://us.ard.yahoo.com/SIG=12k3nu... title="Justin Timberlake - Reuters" class="img"%26gt;%26lt;/a%26gt;


%26lt;h3%26gt;Popular Searches%26lt;/h3%26gt;


%26lt;ul class="col1"%26gt;


%26lt;li%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12k3nu... Timberlake%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12k3nu... Nichols%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;ul class="col2"%26gt;


%26lt;li%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12k3nu... Playoffs%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12k3nu... Dog%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;ul class="col3"%26gt;


%26lt;li%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12k3nu...


%26lt;li%26gt;%26lt;a href="http://us.ard.yahoo.com/SIG=12k3nu...


%26lt;/ul%26gt;


%26lt;form action="http://us.ard.yahoo.com/SIG=12k3...


%26lt;input type="hidden" value="ad-fp-wm-7" name="fr"%26gt;%26lt;label for="srch"%26gt;Search Web:%26lt;/label%26gt; %26lt;input name="p" class="guide" id="srch" value="" size="15"%26gt; %26lt;input type="submit" value="Go"%26gt;%26lt;/form%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;style type="text/css"%26gt;#pulse h3{font:bold 114% arial;text-align:left;color:#555;margin-... .bd{padding:9px 10px 1.2em 10px;}#pulse img{float:left;margin:0px;padding:1px; border:1px solid #9cafbd;border-color:#9cafbd #9cafbd #647684 #647684;}#pulse ol{float: left;width:15em;margin-left:10px;}#pulse li{margin-bottom:6px;font:77%/100% verdana;padding-left: 8px; background:url(http://us.i1.yimg.com/us.yimg.com/i/nt/g... 2px .6em no-repeat;}#pulse li a{font-weight:bold;}#pulse li div{margin:0 0 2px;color:#666;}#pulse li div a{font-weight:normal;}%26lt;/style%26gt;%26lt;div id="pulse" class="md"%26gt;%26lt;div class="hd"%26gt;%26lt;h2%26gt;Pulse - What Yahoos Are Into%26lt;/h2%26gt;%26lt;/div%26gt;%26lt;div id="pulsebd" class="bd"%26gt;%26lt;h3%26gt; Music Awards Alert: Most Popular Nominees %26lt;/h3%26gt;%26lt;a href=s/481120/**http://music.yahoo.com/v... src="http://us.ent1.yimg.com/images.musi... alt=" Carrie Underwood " width="92" height="119"%26gt;%26lt;/a%26gt;%26lt;ol%26gt;%26lt;li class="tt1"%26gt;%26lt;a href=s/481121/**http://us.rd.yahoo.com/l... Jesus Take The Wheel %26lt;/a%26gt;%26lt;div%26gt; Carrie Underwood %26lt;/div%26gt;%26lt;/li%26gt;%26lt;li class="tt2"%26gt;%26lt;a href=s/481122/**http://us.rd.yahoo.com/l... Be Without You %26lt;/a%26gt;%26lt;div%26gt; Mary J. Blige %26lt;/div%26gt;%26lt;/li%26gt;%26lt;li class="tt3"%26gt;%26lt;a href=s/481123/**http://us.rd.yahoo.com/l... Not Ready To Make Nice %26lt;/a%26gt;%26lt;div%26gt; Dixie Chicks %26lt;/div%26gt;%26lt;/li%26gt;%26lt;li class="tt4"%26gt;%26lt;a href=s/481124/**http://us.rd.yahoo.com/l... Put Your Records On %26lt;/a%26gt;%26lt;div%26gt; Corinne Bailey Rae %26lt;/div%26gt;%26lt;/li%26gt;%26lt;/ol%26gt;%26lt;/div%26gt;%26lt;a class=btn-more href=s/481125/**http://us.rd.yahoo.com/l... More nominees %26lt;/a%26gt;%26lt;/div%26gt;%26lt;div id="popsearch" class="md"%26gt;


%26lt;div class="hd"%26gt;%26lt;h2%26gt;%26lt;a href="r/dm"%26gt;Popular Searches: %26lt;span%26gt;Today's Overall Leaders%26lt;/span%26gt;%26lt;/a%26gt;%26lt;/h2%26gt;%26lt;/div%26gt;


%26lt;div id="popsearchbd" class="bd"%26gt;


%26lt;ol%26gt;%26lt;li class="tt1"%26gt;%26lt;a href="r/dq/*-http://search.yahoo.com/sea... Spears%26lt;/a%26gt;%26lt;/li%26gt;





%26lt;li class="tt2"%26gt;%26lt;a href="r/dq/*-http://search.yahoo.com/sea... Rai%26lt;/a%26gt;%26lt;/li%26gt;





%26lt;li class="tt3"%26gt;%26lt;a href="r/dq/*-http://search.yahoo.com/sea...





%26lt;li class="tt4"%26gt;%26lt;a href="r/dq/*-http://search.yahoo.com/sea... Knowles%26lt;/a%26gt;%26lt;/li%26gt;





%26lt;/ol%26gt;%26lt;ol%26gt;%26lt;li class="tt5"%26gt;%26lt;a href="r/dq/*-http://search.yahoo.com/sea... Lopez%26lt;/a%26gt;%26lt;/li%26gt;





%26lt;li class="tt6"%26gt;%26lt;a href="r/dq/*-http://search.yahoo.com/sea...





%26lt;li class="tt7"%26gt;%26lt;a href="r/dq/*-http://search.yahoo.com/sea... Kidd%26lt;/a%26gt;%26lt;/li%26gt;





%26lt;li class="tt8"%26gt;%26lt;a href="r/dq/*-http://search.yahoo.com/sea... Lohan%26lt;/a%26gt;%26lt;/li%26gt;





%26lt;/ol%26gt;


%26lt;/div%26gt;


%26lt;a class="btn-more" href="r/du"%26gt;» More Yahoo! Searches%26lt;/a%26gt;


%26lt;/div%26gt;


%26lt;script type="text/javascript"%26gt;


now=new Date;


t10=now.getTime();


%26lt;/script%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;div id="footer" class="md"%26gt;


%26lt;ul id="flist1" class="strong"%26gt;


%26lt;li class="first"%26gt;%26lt;a href="r/ao"%26gt;Advertise With Us%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;


%26lt;a href="r/o4"%26gt;Search Marketing%26lt;/a%26gt;


%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/ad"%26gt;Suggest a Site%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/n3"%26gt;Page Tour%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/fp" onclick="window.location.href='r/fq/*htt... false"%26gt;Feedback%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li class="last"%26gt;%26lt;a href="r/ep"%26gt;Yahoo! Telemundo%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;ul id="flist2"%26gt;


%26lt;li class="first"%26gt;%26lt;a href="r/cp"%26gt;Company Info%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/hr"%26gt;Jobs%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/hw"%26gt;Help%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li%26gt;%26lt;a href="r/pv"%26gt;Privacy Policy%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;li class="last"%26gt;%26lt;a href="r/ts"%26gt;Terms of Service%26lt;/a%26gt;%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;ul id="copyright"%26gt;


%26lt;li class="first"%26gt;Copyright © 2007 Yahoo! Inc. All rights reserved.%26lt;/li%26gt;


%26lt;li class="first"%26gt;%26lt;a href="r/cy"%26gt;Copyright/IP Policy%26lt;/a%26gt;.%26lt;/li%26gt;


%26lt;/ul%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;/div%26gt;


%26lt;!-- SpaceID=2716149 loc=FR01 noad --%26gt;


%26lt;script language=javascript%26gt;


if(window.yzq_d==null)window.yzq_d=new Object();


window.yzq_d['CiWhJkLEYpU-']='%26amp;U=139m2...


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT...


%26lt;script type="text/javascript"%26gt;


YAHOO.Fp.dod = function(){


var aArgs = arguments, nArgsLength = aArgs.length;


this.oTypes = {


js : "script" ,


css : "link"


}


sNode=(nArgsLength%26gt;3) ? this.oTypes[aArgs[3]] : this.oTypes["js"];


this.oAttributes = {


sNode : sNode ,


aType : ["type", (sNode=="script" ? "text/javascript" : "text/css") ] ,


aSource : [ (sNode=="script" ? "src" : "href" ) , aArgs[0] ] ,


aName : ( sNode=="script" ? [ "name" , "javascript" ] : [ "rel" , "stylesheet" ] ) ,


sId : ( this.id++ || 0 ) ,


bBreakCache : ( (nArgsLength%26gt;1 %26amp;%26amp; aArgs[1]!='') ? aArgs[1] : 0 ) ,


bRemove : ( (nArgsLength%26gt;2 %26amp;%26amp; aArgs[2]!='') ? aArgs[2] : 0 )


}


this.get = function(){


var d = document;


var dNode = d.createElement(this.oAttributes.sNode);


dNode.setAttribute( this.oAttributes.aType[0] , this.oAttributes.aType[1] );


dNode.setAttribute( this.oAttributes.aName[0] , this.oAttributes.aName[1] );


dNode.setAttribute( "id" , "src" + this.oAttributes.sId );


if(this.oAttributes.bBreakCache){


this.oAttributes.aSource[1] += "?rnd=" + Math.random();


}


dNode.setAttribute( this.oAttributes.aSource[0] , this.oAttributes.aSource[1] );


var dHead = d.getElementsByTagName('head')[0];


dHead.appendChild(dNode);


if(this.oAttributes.bRemove){


setTimeout(function(){dNode.parentNode... 500);


}


return dNode;


}


return this.get();


}


YAHOO.Fp.load = function(){


now=new Date;


t12=now.getTime();


_ult=(typeof(yguc)!="undefined")?1:0;


YAHOO.Fp.dod('http://us.js2.yimg.com/us.js.yimg.com/i/... 'css');


YAHOO.Fp.dod('http://us.js2.yimg.com/us.js.yimg.com/i/...


}


window.onload=YAHOO.Fp.load;


YAHOO.Fp.jsOnloadLoaded = function(){


YAHOO.Fp.trough = new YAHOO.Fp.oTrough();


YAHOO.util.Event.addListener('allyserv... 'click',function(e){YAHOO.util.Event.sto... YAHOO.Fp.trough.toggleTrough(0,{sAction : "all"});} );


}


YAHOO.Fp.jsLoaded = function(){


if(document.getElementById("exceptiona...


YAHOO.Fp.updateTimeStamp('exceptional'...


}


YAHOO.Fp._ylh=typeof(YLH)!='undefined'...


if(YAHOO.Fp.infinity){


YAHOO.Fp.infinity();


}


instantiatePaModule();


var eSizeToggleLink = document.getElementById("sizetogglelink"...


if(eSizeToggleLink){


eSizeToggleLink.onclick=function(){YAH... false;};


}


if(document.getElementById('todaytabs'...


var todayTabs = new YAHOO.Fp.tabs("todaytabs");


todayTabs.bChangeTab=0;


todayTabs.changeAction(YAHOO.Fp.loadPa...


todayTabs.setupTabs();


YAHOO.Fp.setupStoriesTabs("footer1",to...


}


if(document.getElementById('vsearchtab...


var verts=new YAHOO.Fp.tabs("vsearchtabs");


verts.changeAction(YAHOO.Fp.changeVert...


verts.setupTabs();


YAHOO.util.Event.addListener(document,...


}


if(YAHOO.Fp._ie){


YAHOO.Fp.onResize = function(){


var dLink = document.getElementById("copyright");


var nSize = dLink.offsetHeight;


document.getElementById('search').styl... ? (nSize%26gt;21 ? '120px' : '105px') : '89px');


if(document.getElementById('scountry')... ? (nSize%26gt;21 ? '32px' : '28px') : '25px');}


}


YAHOO.Fp.onResize();


YAHOO.util.Event.addListener('page','r...


}


YAHOO.Fp.oSearch.searchTargets = {"IN":"r/i5","UK":"r/i6","CA":"r/i7","PH...


YAHOO.util.Event.addListener(document.... 'submit', YAHOO.Fp.oSearch.updateSearch, verts);


if(document.getElementById('newstabs')...


var newsTabs = new YAHOO.Fp.tabs("newstabs");


newsTabs.bChangeTab=0;


newsTabs.changeAction(YAHOO.Fp.loadPan...


newsTabs.setupTabs();


if(typeof(YAHOO.Fp.updateTimeStamp)!='...


}


YAHOO.Fp.local = new YAHOO.Fp.localNews();


if(document.getElementById('editpage')...


YAHOO.Fp.pageSettings = new YAHOO.Fp.oPageSettings();


YAHOO.Fp.oPageSettings.prototype.sCurr... = "t1";YAHOO.util.Event.addListener('editp... 'click',function(e){YAHOO.util.Event.sto... false;} );


YAHOO.util.Event.addListener(document.... 'click', function(e){YAHOO.util.Event.stopEvent(e... false;} );


}


YAHOO.Fp.selectTab = function(sTab,oObj){


sTab = YAHOO.cookie.getsub("FPM",sTab);


if(sTab!=""){


setTimeout( function(){


oObj.tabAction(0,oObj,document.getElem...


}, 10);


}


}


if(YAHOO.cookie.get("FPM").indexOf('='...


YAHOO.Fp.selectTab("news",newsTabs);


YAHOO.Fp.selectTab("today",todayTabs);


}


YAHOO.Fp.onJsLoaded.fire();


};


if(YAHOO.Fp._ie){document.domain="yaho...


var YMAPPID = "trafficbrowser";


YAHOO.Fp.sPartner="";


YAHOO.Fp.nUlmVer=3;


YAHOO.Fp.oSearch={};


YAHOO.Fp.oSearch.bg='http://us.i1.yimg...


YAHOO.Fp.oSearch.sMoreLinksHtml='%26lt;div%26gt;... class="first"%26gt;%26lt;a href="r/av"%26gt;Answers%26lt;/a%26gt;%26lt;/li%26gt;%26lt;li%26gt;%26lt;a href="r/aw/*-http://audio.search.yahoo.c... class="vs_audio"%26gt;Audio%26lt;/a%26gt;%26lt;/li%26gt;%26lt;li%26gt;%26lt;a href="r/b0/*-http://search.yahoo.com/sea... class="vs_directory"%26gt;Directory%26lt;/a%26gt;%26lt;/li%26gt;%26lt;... href="r/b4"%26gt;Jobs%26lt;/a%26gt;%26lt;/li%26gt;%26lt;li%26gt;%26lt;a href="r/b1/*-http://news.search.yahoo.co... class="vs_news"%26gt;News%26lt;/a%26gt;%26lt;/li%26gt;%26lt;li class="last"%26gt;%26lt;a href="r/cq"%26gt;All Search Services%26lt;/a%26gt;%26lt;/li%26gt;%26lt;/ul%26gt;%26lt;span%26gt;%26lt;/span%26gt;%26lt;ul class="vslist"%26gt;%26lt;li class="first"%26gt;%26lt;a href="r/bt"%26gt;Advertising Programs%26lt;/a%26gt;%26lt;/li%26gt;%26lt;/ul%26gt;%26lt;/div%26gt;';


YAHOO.Fp.oSearch.sLocalSearchHtml = '%26lt;label for="p" class="plabel"%26gt;%26lt;input id="p" type="text" class="inputtext" name="p"%26gt;%26lt;span%26gt;Businesses %26amp; Services%26lt;/span%26gt;%26lt;/label%26gt;%26lt;label for="scsz" class="cszlabel1"%26gt;in%26lt;/label%26gt;%26lt;label for="scsz" class="cszlabel2"%26gt;%26lt;input name="csz" class="inputtext" id="scsz" type="text"%26gt;%26lt;span%26gt;Address, City, State, or Zip %26lt;/span%26gt;%26lt;/label%26gt;';


function PaModule(){};


YAHOO.Fp.oPaErrorManager = {


mail : {


html : "go to %26lt;a href='r/lm'%26gt;Yahoo! Mail%26lt;/a%26gt; to get your mail.%26lt;/li%26gt;%26lt;li class='last'%26gt;%26lt;a href='r/ll'%26gt;» Go To Yahoo! Mail",


status : false,


buffer : false,


requestDelayTimeout : null,


requestFailTimeout : null,


bProcessed : 0,


dScriptNode : null


},


messenger : {


html : "go to %26lt;a href='r/p4'%26gt;Yahoo! Messenger%26lt;/a%26gt; to see your online contacts.%26lt;/li%26gt;%26lt;li class='last'%26gt;%26lt;a href='ymsgr:SendIM'%26gt;» Go To Yahoo! Messenger",


status : false,


buffer : false,


requestDelayTimeout : null,


requestFailTimeout : null,


bProcessed : 0,


dScriptNode : null


},


weather : {


html : "go to %26lt;a href='r/wf'%26gt;Yahoo! Weather%26lt;/a%26gt; to get the local weather.%26lt;/li%26gt;%26lt;li class='last'%26gt;%26lt;a href='r/wf'%26gt;» Go To Yahoo! Weather",


status : false,


buffer : false,


requestDelayTimeout : null,


requestFailTimeout : null,


dScriptNode : null


},


traffic : {


html : "go to %26lt;a href='r/kf'%26gt;Yahoo! Local%26lt;/a%26gt; to get the local traffic.%26lt;/li%26gt;%26lt;li class='last'%26gt;%26lt;a href='r/kf'%26gt;» Go To Yahoo! Local",


status : false,


buffer : false,


requestDelayTimeout : null,


requestFailTimeout : null,


dScriptNode : null


},


events : {


html : "go to %26lt;a href='r/kf'%26gt;Yahoo! Local%26lt;/a%26gt; to get the local events.%26lt;/li%26gt;%26lt;li class='last'%26gt;%26lt;a href='r/kf'%26gt;» Go To Yahoo! Local",


status : false,


buffer : false,


requestDelayTimeout : null,


requestFailTimeout : null,


dScriptNode : null


},


music : {


html : "%26lt;h3%26gt;%26lt;a href='r/uc'%26gt;LAUNCHcast Radio:%26lt;/a%26gt; %26lt;em%26gt;%26lt;a href='r/ud'%26gt;Featured stations%26lt;/a%26gt;%26lt;/em%26gt;%26lt;/h3%26gt;%26lt;div class='station'%26gt;%26lt;div class='station-hd'%26gt;%26lt;/div%26gt;%26lt;div class='station-bd' class='fixfloat'%26gt;%26lt;a class='photo-link' href='r/ut/*-http://music.yahoo.com/laun... class='station-photo' src='http://us.ent1.yimg.com/images.laun... class='station-name' href='r/ut/*-http://music.yahoo.com/laun... Big Hits%26lt;/a%26gt;%26lt;/h4%26gt;%26lt;p class='artists'%26gt;%26lt;a href='r/ut/*-http://music.yahoo.com/laun... J. Blige, Kelly Clarkson, Sean Paul, Beyonce%26lt;/a%26gt;%26lt;/p%26gt;%26lt;a class='listen' href='r/ul/*-http://music.yahoo.com/lc/?... onclick=\"YAHOO.Fp.launchMusicWindow('ht... false;\"%26gt;Listen%26lt;/a%26gt;%26lt;/div%26gt;%26lt;div class='station-ft'%26gt;%26lt;/div%26gt;%26lt;/div%26gt;%26lt;a class='btn-more' href='r/ua'%26gt;» View All Stations%26lt;/a%26gt;%26lt;div class='nav'%26gt;%26lt;a class='back' onclick=\"return YAHOO.Fp.oPaModule.getModuleData('music'... href='r/um'%26gt;Previous%26lt;/a%26gt;%26lt;a class='frwd' onclick=\"return YAHOO.Fp.oPaModule.getModuleData('music'... href='r/um'%26gt;Next%26lt;/a%26gt;%26lt;/div%26gt;",


error : false,


status : false,


buffer : false,


requestDelayTimeout : null,


requestFailTimeout : null,


dScriptNode : null


},


horoscope : {


html : "go to %26lt;a href='r/h3'%26gt;Yahoo! Astrology%26lt;/a%26gt; to get your horoscope.%26lt;/li%26gt;%26lt;li class='last'%26gt;%26lt;a href='r/h3'%26gt;» Go To Yahoo! Astrology",


error : false,


status : false,


buffer : false,


requestDelayTimeout : null,


requestFailTimeout : null,


dScriptNode : null


},


template : {


templateHdr : "%26lt;div class='pa-alert error'%26gt;%26lt;ul%26gt;%26lt;li class='first'%26gt;Please ",


templateFtr : "%26lt;/a%26gt;%26lt;/li%26gt;%26lt;/ul%26gt;%26lt;/div%26gt;"


}


}


YAHOO.Fp.oPaModuleHostname="p.www.yaho...


if(YAHOO.Fp._hostname === 'preview.www.yahoo.com' || YAHOO.Fp._hostname === 'qa.www.yahoo.com' || YAHOO.Fp._hostname === 'staging.www.yahoo.com'){


YAHOO.Fp.oPaModuleHostname = YAHOO.Fp._hostname;


}


%26lt;/script%26gt;


%26lt;script type="text/javascript" src="http://us.js2.yimg.com/us.js.yimg.c...


%26lt;script type="text/javascript"%26gt;


now=new Date;


t11=now.getTime();


%26lt;/script%26gt;


%26lt;!--[if IE]%26gt;%26lt;script language="javascript" type="text/javascript"%26gt;


YAHOO.Fp.nFontSize=false;


if(document.getElementById("copyright"...


dLink = document.getElementById("copyright");


YAHOO.Fp.nFontSize = dLink.offsetHeight;


}


if (typeof(app_c_pp)!='undefined'){


app_c_pp('hp',YAHOO.Fp.hp?1:0);


app_c_pp('res',YAHOO.Fp.bNarrow);


app_c_pp('cres',YAHOO.Fp.sFsCookie);


app_c_pp('aw',YAHOO.Fp.nScreenWidth);


app_c_pp('fs',YAHOO.Fp.nFontSize);


}


var s=screen,b=document.body;


b.style.behavior='url(#default#clientC...


YAHOO.Fp.sFpm = YAHOO.cookie.get("FPM");


cc='%26amp;hp='+(YAHOO.Fp.hp?1:0)+'%26amp;cp='+(YA...


%26lt;/script%26gt;%26lt;![endif]--%26gt;


%26lt;/html%26gt;


%26lt;script language=javascript%26gt;ULT_KEY='X3oDMTRhN2Y... pbt 1168651209 --%26gt;%26lt;script language=javascript%26gt;


if(window.yzq_p==null)document.write("... language=javascript src=http://us.js2.yimg.com/us.js.yimg.co...


%26lt;/script%26gt;%26lt;script language=javascript%26gt;


if(window.yzq_p)yzq_p('P=8i8g2EWTctLM6...


if(window.yzq_s)yzq_s();


%26lt;/script%26gt;%26lt;noscript%26gt;%26lt;img width=1 height=1 alt="" src="http://us.bc.yahoo.com/b?P=8i8g2EWT...


%26lt;!-- f34.www.re3.yahoo.com compressed/chunked Fri Jan 12 17:35:55 PST 2007 --%26gt;

Is this french?
If u are talking about Yahoo! Answers... this is the English section.





If u are talking about your name, Gerard is indeed a French name?





Other than that, I really have run out of options for answering your question.
Reply:no
Reply:no "this" is an English pronoun. "Ce" is French.
Reply:gné?????
Reply:No, it is English!
Reply:no, it is not
Reply:No it's "Freedom Fries"
Reply:non
Reply:is what french??
Reply:Of course it is...!!!!!!!!!