ÿþ<!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 /> Intellectual Property</span> <br /> <br /> <div class="boxdetail">Intellectual property covers a lot of ground, from trademark application to patentable inventions to copyright infringement. PMA s of counsel relationship with Robert J. Sayfie allows us to bring you his experience and expertise in matters of Intellectual Property Law. Robert uses his extensive litigation practice, work experience as an engineer, and broad technical background to help clients through their legal issues.</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" bgcolor="#efefef"><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" style="border-right:1px dotted #aaaaaa" class="bodydetail"><p><strong>Our services include:</strong></p> <ul type="disc"> <li>Patent research</li> <li>Advising clients on the patentability of inventions</li> <li>Drafting of patent applications</li> <li>Filing and prosecution of utility, design, plant, PCT, and provisional patent applications</li> <li>Preparing opinions on the validity and infringement of patents</li> <li>Filing and prosecution of trademark and servicemark applications</li> <li>Copyrights</li> <li>Licensing</li> <li>Filing and prosecution of copyright applications</li> <li>Advising on Internet, electronic commerce law, and domain name disputes, including the representation of clients under the Internet Corporation for Assigned Names and Numbers rules</li> </ul><p class="style27">&nbsp;</p></td> </tr> </table> </td> </tr> </table> </body> </html>