ÿþ<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Plachta, Murphy and Associates, P.C.</title> <link rel="stylesheet" href="http://www.trstax.com/css/pmastyle.css" type="text/css" /> <style type="text/css"> <!-- .style7 {font-size: 11px} .style9 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; } .style10 { font-size: 20px; font-family: "Times New Roman", Times, serif; } .style11 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height:18px; text-align:justify; padding-right:20px; } .style13 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #555555; } .style19 {font-size: 20px; font-family: "Times New Roman", Times, serif; color: #dddddd; } .style24 {font-family: "Times New Roman", Times, serif; color: #660000; font-size: 17px;} .style26 {color: #660000; font-size: 17px;} .style27 {font-size: 12px} a:link { color: #1a1f72; text-decoration:none; } a:visited { color: #1a1f72; text-decoration:none; } a:hover { color: #660000; text-decoration:none; } a:active { color: #FFFF00; } #nav a:link { font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size:11px; color: #888888; text-decoration:none; text-transform:uppercase; } #nav a:visited { font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size:11px; color: #888888; text-decoration:none; text-transform:capitalize; text-transform:uppercase; } #nav a:hover { font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size:11px; color: #000066; text-decoration:none; text-transform:capitalize; text-transform:uppercase; } .style29 {font-size: 12px; font-family: Arial, Helvetica, sans-serif;line-height:16px } .style30 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height:18px; text-align:justify; padding-right:20px; } --> </style> <script type="text/javascript"> /*********************************************** * Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (http://www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ var fadeimages=new Array() //SET IMAGE PATHS. Extend or contract array as needed fadeimages[0]=["bwBrian.jpg", "", ""] //plain image syntax fadeimages[1]=["bwMiles.jpg", "", ""] //image with link syntax fadeimages[2]=["bwRyan.jpg", "", ""] //image with link and target syntax fadeimages[3]=["bwDanica.jpg", "", ""] //image with link and target syntax var fadebgcolor="white" ////NO need to edit beyond here///////////// var fadearray=new Array() //array to cache fadeshow instances var fadeclear=new Array() //array to cache corresponding clearinterval pointers var dom=(document.getElementById) //modern dom browsers var iebrowser=document.all function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){ this.pausecheck=pause this.mouseovercheck=0 this.delay=delay this.degree=10 //initial opacity degree (10%) this.curimageindex=0 this.nextimageindex=1 fadearray[fadearray.length]=this this.slideshowid=fadearray.length-1 this.canvasbase="canvas"+this.slideshowid this.curcanvas=this.canvasbase+"_0" if (typeof displayorder!="undefined") theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :) this.theimages=theimages this.imageborder=parseInt(borderwidth) this.postimages=new Array() //preload images for (p=0;p<theimages.length;p++){ this.postimages[p]=new Image() this.postimages[p].src=theimages[p][0] } var fadewidth=fadewidth+this.imageborder*2 var fadeheight=fadeheight+this.imageborder*2 if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox) document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>') else document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>') if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox this.startit() else{ this.curimageindex++ setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay) } } function fadepic(obj){ if (obj.degree<100){ obj.degree+=10 if (obj.tempobj.filters&&obj.tempobj.filters[0]){ if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+ obj.tempobj.filters[0].opacity=obj.degree else //else if IE5.5- obj.tempobj.style.filter="alpha(opacity="+obj.degree+")" } else if (obj.tempobj.style.MozOpacity) obj.tempobj.style.MozOpacity=obj.degree/101 else if (obj.tempobj.style.KhtmlOpacity) obj.tempobj.style.KhtmlOpacity=obj.degree/100 else if (obj.tempobj.style.opacity&&!obj.tempobj.filters) obj.tempobj.style.opacity=obj.degree/101 } else{ clearInterval(fadeclear[obj.slideshowid]) obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1" obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas) obj.populateslide(obj.tempobj, obj.nextimageindex) obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0 setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay) } } fadeshow.prototype.populateslide=function(picobj, picindex){ var slideHTML="" if (this.theimages[picindex][1]!="") //if associated link exists for image slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">' slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">' if (this.theimages[picindex][1]!="") //if associated link exists for image slideHTML+='</a>' picobj.innerHTML=slideHTML } fadeshow.prototype.rotateimage=function(){ if (this.pausecheck==1) //if pause onMouseover enabled, cache object var cacheobj=this if (this.mouseovercheck==1) setTimeout(function(){cacheobj.rotateimage()}, 100) else if (iebrowser&&dom||dom){ this.resetit() var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) crossobj.style.zIndex++ fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",70) this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0" } else{ var ns4imgobj=document.images['defaultslide'+this.slideshowid] ns4imgobj.src=this.postimages[this.curimageindex].src } this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0 } fadeshow.prototype.resetit=function(){ this.degree=10 var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) if (crossobj.filters&&crossobj.filters[0]){ if (typeof crossobj.filters[0].opacity=="number") //if IE6+ crossobj.filters(0).opacity=this.degree else //else if IE5.5- crossobj.style.filter="alpha(opacity="+this.degree+")" } else if (crossobj.style.MozOpacity) crossobj.style.MozOpacity=this.degree/101 else if (crossobj.style.KhtmlOpacity) crossobj.style.KhtmlOpacity=this.degree/100 else if (crossobj.style.opacity&&!crossobj.filters) crossobj.style.opacity=this.degree/101 } fadeshow.prototype.startit=function(){ var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) this.populateslide(crossobj, this.curimageindex) if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER var cacheobj=this var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid) crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1} crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0} } this.rotateimage() } </script> </head> <body><div id="header"> <table width="768" border="0" cellspacing="0" cellpadding="0" id="nav"> <tr> <td width="481"><img src="pmalogosmall.jpg" width="323" height="91"/></td> <td width="51" nowrap="nowrap"><div align="center" class="style29" style="border-right:1px solid #dddddd" ><a href="http://www.pmalawpc.com/">HOME</a></div></td> <td width="101" nowrap="nowrap"><div align="center" class="style29" style="border-right:1px solid #dddddd" ><a href="client.html">CLIENT ALERTS </a></div></td> <td width="53" nowrap="nowrap"><div align="center" class="style29" style="border-right:1px solid #dddddd" ><a href="about.html">ABOUT</a></div></td> <td width="67" nowrap="nowrap"><div align="center" class="style29" style="border-right:1px solid #dddddd"><a href="contact.html">CONTACT</a></div></td> <td width="82" nowrap="nowrap"><div align="center" class="style29" ><a href="directions.html">DIRECTIONS</a></div></td> </tr> </table> </div> <table width="100%" border="0" align="center" cellspacing="0" id="body1"> <tr> <td align="center"> <table border="0" align="center" cellpadding="12" cellspacing="0" id="section1"> <tr> <td width="233" valign="top"><img src="stairs.jpg" alt="Stock Photo" name="stock" width="249" height="231" id="stock" style="background-color: #CCCCCC" /></td> <td width="486" valign="top"><span class="boxhead"><br /> Professional Collection Solutions</span> <br /> <br /> <div class="boxdetail">Collecting debt requires walking a fine line between maintaining your relationship with your customers and being assertive in recovering your money. We can walk that line for you, allowing you to remain focused on your business. The goal of Professional Collection Solutions is to be an effective tool to collect your money. We will treat your customers like they are our clients -- with respect, dignity, and absolute professionalism. Our object will be to collect the money for our clients' Accounts Receivables Balances or get a commitment in writing for a repayment schedule. This service is billed on a flat-fee basis to give you full control over the cost of retaining legal assistance in collecting your hard-earned dollars. Call (616) 458-3994 for a free telephone consultation.</div> </td> </tr> </table> </td> </tr> </table> <div style="width:100%;background-image:url('Border.jpg');height:12px;border-bottom:1px solid #bbbbbb"> </div> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td align="center" style="background:url('grad.jpg') repeat-x"><table width="800" border="0" align="center" cellpadding="15" cellspacing="0" bgcolor="#dddddd" style="border-left:1px solid #cccccc;border-right:1px solid #cccccc"> <tr> <td valign="top" class="bodydetail"> <p class="bodyhead">Our Methods</p> <p> <b>Preparation:</b> Our collections team will review all paperwork on the debtor before initiating our services. We will know the history of the account, credit record, and the promises kept or broken. We will have all records in front of us, ready for reference. </p> <p><b>Attitude: </b>We will be straightforward and professional with your customers. You have a contract. You delivered the goods. Money is owed, and you have a right to expect payment. </p> <p> <b>Control: </b>We will stay focused on the recover of your customer's debt. We will not let the customer sidetrack us with personal history, excuses, etc. Our object is to collect your money or get a commitment in writing for a repayment schedule. </p> <p> <b>Flexibility:</b> Professional Collection Solutions will be ready to adjust to any situation. We will be sensitive and adapt to meet the circumstances. Your customer will receive the same respect we give to our clients. </p> <p> <b>Time:</b> The longer a delinquent account is held, the less likely it is that it will be recovered. If payment or a payout is not arranged within 120 days, we will discuss your legal remedies and pursue district or circuit court action with your approval. </p> <p> <b>Direct Payment:</b> To maintain your control, we will direct all payments to your business. We will communicate regular updates to you on recover results. We will not let your money fall through the cracks. </p> <p class="bodyhead"> Our Collections Team </p> <p> <b>Brian J. Plachta,</b> <i>Attorney,</i> with more than 20 years of experience in Business, Corporate, and Real Estate Law. </p> <p> <b>Miles J. Murphy, III,</b><i> Attorney,</i> with more than 20 years of experience in Commercial Law and Civil Litigation. </p> <p> <b>Ryan M. Huizenga, </b><i>Attorney,</i> who specializes in Business Transactions, Business Law and Civil Litigation. </p> <p> <b>Amanda DeChamplain, </b><i>Collections Paralegal, </i>who specializes in Bankruptcy and Collections. <p>&nbsp;</p><p>&nbsp;</p></td> </tr> </table> </td> </tr> </table> </body> </html>