/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
//Contents for menu 1
var menu1=new Array()
menu1[0]='<a class="menu" href="http://www.scbankruptcyattorneys.com">BLOG of Drose Law Firm</a>'
menu1[1]='<a class="menu" href="bankruptcyvideos.html">Bankruptcy Videos</a>'
menu1[2]='<a class="menu" href="refinancing-after-bankruptcy.html">Refinancing after Bankruptcy</a>'
menu1[3]='<a class="menu" href="ten.html">Ten Consumer Commandments</a>'
menu1[4]='<a class="menu" href="identitytheft.html">What to do...Identity Theft</a>'
menu1[5]='<a class="menu" href="collecting_consumer_debt_in_america.pdf" target="_blank">Collecting Consumer Debt (PDF)</a>'
menu1[6]='<a class="menu" href="sc_bankruptcies_soar.pdf" target="_blank">SC Bankruptcies Soar (PDF)</a>'
menu1[7]='<a class="menu" href="http://www.newyorker.com/talk/financial/2008/04/07/080407ta_talk_surowiecki" target="_blank">Going For Broke (link)</a>'
menu1[8]='<a class="menu" href="mortgages.html">Modification of Mortgages</a>'
menu1[9]='<a class="menu" href="swindlersforeclosure.html">Beware of Foreclosure Services</a>'
menu1[10]='<a class="menu" href="creditscore.html">Improve Your Credit Score</a>'
menu1[11]='<a class="menu" href="PR-new-tax-rebate-scam.pdf" target="_blank">Tax Rebate Scam (PDF)</a>'
menu1[12]='<a class="menu" href="http://www.scconsumer.gov/publications/consumer_alert/consumer_alert.htm" target="_blank">Consumer Alerts (link)</a>'
menu1[13]='<a class="menu" href="wachovia.html">Attn: Wachovia Customers</a>'
menu1[14]='<a class="menu" href="lossmitigation.pdf" target="_blank">Loss Mitigation Programs (PDF)</a>'
menu1[15]='<a class="menu" href="rescueplan.html">Rescue Plan Unveiled</a>'
menu1[16]='<a class="menu" href="avertingdisaster.html">Averting Economic Disaster</a>'
menu1[17]='<a class="menu" href="bankruptcyontherise.html">Business Bankruptcies Rising</a>'
menu1[18]='<a class="menu" href="downturn.html">Downturn Pushes Bankruptcy</a>'
menu1[19]='<a class="menu" href="repossession.html">Repossession Rate Falls</a>'
menu1[20]='<a class="menu" href="http://www.washingtonpost.com/wp-dyn/content/article/2010/02/17/AR2010021705166_pf.html" target="_blank">Foreclosure-Prevention (link)</a>'
menu1[21]='<a class="menu" href="http://online.wsj.com/article/SB10001424052748704804204575069374130248754.html?mod=WSJ_hp_mostpop_read" target="_blank">Credit Card Fees - Traps (link)</a>'
menu1[22]='<a class="menu" href="credit-checks.pdf" target="_blank">Credit Checks Face Scrutiny (PDF)</a>'
menu1[23]='<a class="menu" href="http://www.housingwatch.com/2010/03/24/bofa-to-reduce-mortgage-principal/?icid=main|main|dl4|link5|http%3A%2F%2Fwww.housingwatch.com%2F2010%2F03%2F24%2Fbofa-to-reduce-mortgage-principal%2F" target="_blank">Bank of America to Reduce Mortgage Principal (link)</a>'
menu1[23]='<a class="menu" href="http://www.walletpop.com/blog/2010/05/03/debt-settlement-a-nuclear-option-that-most-people-shouldnt-co/?icid=main%7Cmain%7Cdl6%7Clink7%7Chttp%3A%2F%2Fwww.walletpop.com%2Fblog%2F2010%2F05%2F03%2Fdebt-settlement-a-nuclear-option-that-most-people-shouldnt-co%2F" target="_blank">Debt Settlement-Shouldn&#39;t Consider (link)</a>'
menu1[24]='<a class="menu" href="http://www.walletpop.com/blog/2010/05/12/your-worst-credit-problems-are-not-as-bad-as-you-think/?icid=main|main|dl8|link7|http%3A%2F%2Fwww.walletpop.com%2Fblog%2F2010%2F05%2F12%2Fyour-worst-credit-problems-are-not-as-bad-as-you-think%2F" target="_blank">Credit Problems-Not as Bad (link)</a>'
menu1[25]='<a class="menu" href="article-credit.pdf" target="_blank">Credit Settlement Industry Under Fire (PDF)</a>'


//Contents for menu 2
var menu2=new Array()
menu2[0]='<a class="menu" href="firm.html">General Information</a>'
menu2[1]='<a class="menu" href="drose.html">Michael Drose</a>'
menu2[2]='<a class="menu" href="fryar.html">Tom Fryar</a>'
menu2[3]='<a class="menu" href="urquhart.html">Ann Urquhart</a>'
var menuwidth='165px' //default menu width
var menubgcolor='#5B7C9D' //menu bgcolor
var disappeardelay=250 //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?
/////No further editting needed
var ie4=document.all
var ns6=document.getElementById&&!document.all
if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}
function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}
function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}
function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}
function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)
if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}
return clickreturnvalue()
}
function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}
function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}
function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}
function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}
function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}
if (hidemenu_onclick=="yes")
document.onclick=hidemenu



//other scripts



//new window

<!--
function openWin(location,winName,features) {
window.open(location,winName,features);
}
//-->


//print page

function printPage()
{
	window.print();
}


//bookmark

  
<!-- Hide script from older browsers
var urlAddress = "http://www.droselaw.com";
var pageName = "Drose Law Firm, Bankruptcy";
function addToFavorites()
{
if (window.external)
{
window.external.AddFavorite(urlAddress,pageName)
}
else
{ alert("Sorry! Your browser doesn't support this function.");
}
}
// -->


