/*
Please refer to readme.html for full Instructions

Text[...]=[title,text];

Style[...]=[TitleColor,TextColor,TitleBgColor,TextBgColor,TitleBgImag,TextBgImag,TitleTextAlign,TextTextAlign, TitleFontFace, TextFontFace, TipPosition, StickyStyle, TitleFontSize, TextFontSize, Width, Height, BorderSize, PadTextArea, CoordinateX , CoordinateY, TransitionNumber, TransitionDuration, TransparencyLevel ,ShadowType, ShadowColor]
*/

var FiltersEnabled = 1 // if your not going to use transitions or filters in any of the tips set this to 0
var ModuleName="";
if(document.getElementById('clientmodulename')){
	ModuleName=document.getElementById('clientmodulename').value;
}
if (ModuleName=="")
	ModuleName="doctor";  
Text['Affiliated Hospitals/Practices']=[" Affiliated Hospitals/Practices ","Hospital(s) where currently practicing."]
Text['Area Zip Code']=[" Area Zip Code ","Find " + ModuleName + " around this zip code."]
Text['Board Certified']=[" Board Certified ", "Board-certified " + ModuleName + " only."]
Text['Comments']=[" Comments ","Enter additional comments."]
Text['Contact Info']=[" Contact Details ","Phone Number / Address / ..."]
Text['Click to find']=[" Click to find ","Click to find " + ModuleName + " in the map."]
Text['Delicious']=[" Delicious ","Bookmark this link at http://del.icio.us/."]
Text['Distance']=[" Distance ", "Distance from specified zip code."]
Text['Doctor Name']=[" " + upperFirst(ModuleName) + " Name ","Name of the " + ModuleName + "."]
Text['Dentist Name']=[" " + upperFirst(ModuleName) + " Name ","Name of the " + ModuleName + "."]
Text['Doctor Specialty']=[" " + upperFirst(ModuleName) + " Specialty","Speciality of " + ModuleName + " you want to search."]
Text['Dentist Specialty']=[" " + upperFirst(ModuleName) + " Spcialty","Speciality of " + ModuleName + " you want to search."]
Text['Insurance(s) Accepted']=[" Insurance Accepted ","Insurance Accepted."]
Text['Insurer']=[" Insurer ","Insurance Company accepted by doctor."]
Text['Internship']=[" Internship ","Hospital(s) of internship(s)."]
Text['Last Name']=[" Last Name ","Last Name of the " + ModuleName + "."]
Text['First Name']=[" First Name ","First Name of the " + ModuleName + "."]
Text['Medical Education']=[" Medical Education ","College(s) of medical education degree(s)."]
Text['Miles']=["Miles from Zip Code","If specified, search for " + ModuleName + " within given miles (default 5)."]
Text['Minimum Experience']=[" Minimum Experience ","Minimum number of years of practice."]
Text['Purchase Insurance']=[" Purchase Insurance ","Request a quote to purchase an insurance this doctor accepts."]
Text['Review']=[" " +upperFirst(ModuleName) + " Ratings ","Find or Add ratings for the " + ModuleName + "."]
Text['Residency']=[" Residency ","Hospital(s) of residency(s)."]
Text['Request']=[" Request Correction ","Request Correction"]
Text['Soundex']=[" Similar names ", "Similar sounding names (using \"soundex\")"]
Text['Specialty']=[" Specialty ","Specialty."]
Text['Subscribe Doctor']=[" Subscribe " + ModuleName + " ","Using RSS, subscribe reviews for this " + ModuleName + " alone."]
Text['Subscribe Dentist']=[" Subscribe " + ModuleName + " ","Using RSS, subscribe reviews for this " + ModuleName + " alone."]
Text['Subscribe All Doctors']=[" Subscribe All " + ModuleName + "s ","Subscribe reviews for all the " + ModuleName + "s."]
Text['Subscribe All Dentists']=[" Subscribe All " + ModuleName + "s ","Subscribe reviews for all the " + ModuleName + "s."]
Text['Title']=[" Title ","" + ModuleName + "'s title: \"MD/DDS\", etc."]
Text['UPIN']=[" UPIN ","Unified Provider Identification Number."]
Text['Years Practice']=[" Years of Practice ","Years of Practice (time since graduation)."]
Text['Your Name']=[" Your Name ","Your Name"]
Text['Your Contactinfo']=[" Contact Information ","Your Contact Information."]
Text['Doctor Email']=[" " + upperFirst(ModuleName) + " Email ","Email Address For " + ModuleName + "."]
Text['Malpractice Awards']=[" Malpractice Awards ","Arbitration / Malpractice Awards Against " + ModuleName + "."]
Text['Criminal Offense']=[" Criminal Offense ","Criminal Offense Against " + ModuleName + "."]
Text['Disciplinary Actions']=[" Disciplinary Actions ","Disciplinary Actions Against " + ModuleName + "."]
Text['License Information']=[" License Information ","License Information For " + ModuleName + "."]
Text['Languages Spoken']=[" Languages Spoken ","Languages Spoken By " + ModuleName + "."]
Text['Gender']=[" Gender ","Gender Of " + ModuleName + "."]
Text['Buy Insurance']=[" Buy Insurance ","Buy Insurance This " + ModuleName + " Accepts."]
Text['Primary Specialty']=[" Primary Specialty ","Primary Specialty Of " + ModuleName + "."]
Text['Add To Watchlist']=[" Add To Watchlist ","Add " + ModuleName + " To Your Watchlist."]
Text['Secondary Specialty']=[" Secondary Specialty ","Secondary Specialty Of " + ModuleName + "."]
Text['With review']=[" " + upperFirst(ModuleName) + "s with review ", "" + upperFirst(ModuleName) + "s with review only."]

Style[0]=["white","black","#6699cc","#ffffff","","","","","","","right","","","",200,"",2,2,10,10,24,1,0,"",""]

applyCssFilter()

function upperFirst(string)
{
return string.charAt(0).toUpperCase() + string.substring(1,string.length);
}