ÿþ<!DOCTYPE HTML PUBLIC "-//W2C//DTD HTML 2.01 Transitional//EN"> <html> <head> <title>PsyPractice Inc.- Mental Health Testing Instrument</title> <title>Human Behavior Patterns - Coping Skills - Stress Relief</title> <META NAME="description"Content="PsyPractice, Inc is a mental health testing instrument development and implementation company. Founded in 2002, PsyPractice creates and markets the Mauldin Pattern Assessment, a unique, patent-pending, web-based assessment series for any age group. PsyPractice is a forward-thinking organization lead by the psychological visionary, Dr. John Mauldin, who believes Internet technology combined with innovative testing methods will make a difference in an organization's client service."> <META NAME="keywords"Content="mental health, mental health testing"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="life.css" rel="stylesheet" media="screen"> <body background="images/bkgrnd.gif" LINK="#0E3370" VLINK="#0E3370" BGCOLOR="ffffff" ALINK="#0E3370" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <center> <table width=80% border=0 bgcolor="ffffff"><tr><td width=35%><a href="http://psypractice.com"><img src="images/03Logo.jpg" border=0></a></td> <td><center><font face="Palatino" size=3 color="AD1517"><i><b>Real Client Input<br>Real Time Results<br> Real Simple<br>30 Minutes or Less!</b></i></font></center></td></tr></table> <table width=80% border=0 bgcolor="ffffff"><tr bgcolor="ffffff"><td></td></tr><tr bgcolor="ad1517"><td height="1"></td></tr></table> <style> .menu { filter:alpha(Opacity=100, FinishOpacity=100, Style=1, StartX=0, StartY=0, FinishX=500, FinishY=250); } .MenuBox { border-top: 1px solid #ffffff; border-left: 1px solid #ffffff; border-right: 1px solid #ffffff; border-bottom: 1px solid #ffffff; } a.MenuHeader { COLOR: #0E3370; FONT-SIZE: 70%; FONT-FAMILY: Palatino; TEXT-DECORATION: None; FONT-WEIGHT: None; } a.MenuHeader:link { COLOR: #0E3370; FONT-FAMILY: Palatino; TEXT-DECORATION: None; FONT-WEIGHT: None; } a.MenuHeader:visited { COLOR: #0E3370; FONT-FAMILY: Palatino; TEXT-DECORATION: None; FONT-WEIGHT: None; } a.MenuHeader:hover { COLOR: #0E3370; FONT-FAMILY: Palatino; TEXT-DECORATION: None; FONT-WEIGHT: None; } a.MenuItem { COLOR: #0E3370; FONT-SIZE: 70%; FONT-FAMILY: Palatino; TEXT-DECORATION: None; FONT-WEIGHT: None; } a.MenuItem:link { COLOR: #0E3370; FONT-FAMILY: Palatino; TEXT-DECORATION: None; FONT-WEIGHT: None; } a.MenuItem:visited { COLOR: #ad1517; FONT-FAMILY: Palatino; TEXT-DECORATION: None; FONT-WEIGHT: None; } a.MenuItem:hover { COLOR: #0E3370; FONT-FAMILY: Palatino; TEXT-DECORATION: None; FONT-WEIGHT: None; } </style> <script> <!-- // MENU MOUSE OVER function menuOver(itemName) { clearTimeout(timeOn) menuActive = 1 }// MENU MOUSE OUT function menuOut(itemName) { if(document.layers) { menuActive = 0 timeOn = setTimeout("hideAllMenus()", 400) } } // SET BACKGROUND COLOR function getImage(name) { if (document.layers) { return findImage(name, document); } return null; } function findImage(name, doc) { var i, img; for (i = 0; i < doc.images.length; i++) if (doc.images[i].name == name) return doc.images[i]; for (i = 0; i < doc.layers.length; i++) if ((img = findImage(name, doc.layers[i].document)) != null) { img.container = doc.layers[i]; return img; } return null; } function getImagePageLeft(img) { var x, obj; if (document.layers) { if (img.container != null) return img.container.pageX + img.x; else return img.x; } return -1; } function getImagePageTop(img) { var y, obj; if (document.layers) { if (img.container != null) return img.container.pageY + img.y; else return img.y; } return -1; } //document.write('<style> .menu{position: absolute;}</style>'); var timeOn = null numMenus = 7; document.onmouseover = hideAllMenus; document.onclick = hideAllMenus; window.onerror = null; function getStyleObject(objectId) { // cross-browser function to get an object's style object given its id if(document.getElementById && document.getElementById(objectId)) { // W3C DOM return document.getElementById(objectId).style; } else if (document.all && document.all(objectId)) { // MSIE 4 DOM return document.all(objectId).style; } else if (document.layers && document.layers[objectId]) { // NN 4 DOM.. note: this won't find nested layers return document.layers[objectId]; } else { return false; } } // getStyleObject function changeObjectVisibility(objectId, newVisibility) { // get a reference to the cross-browser style object and make sure the object exists var styleObject = getStyleObject(objectId); if(styleObject) { styleObject.visibility = newVisibility; return true; } else { //we couldn't find the object, so we can't change its visibility return false; } } // changeObjectVisibility function showMenu(menuNumber, eventObj, labelID) { hideAllMenus(); if(document.layers) { img = getImage("img" + menuNumber); x = getImagePageLeft(img); y = getImagePageTop(img); menuTop = y + 10; // LAYER TOP POSITION eval('document.layers["menu'+menuNumber+'"].top="'+menuTop+'"'); eval('document.layers["menu'+menuNumber+'"].left="'+x+'"'); } eventObj.cancelBubble = true; var menuId = 'menu' + menuNumber; if(changeObjectVisibility(menuId, 'visible')) { return true; } else { return false; } } function hideAllMenus() { for(counter = 1; counter <= numMenus; counter++) { changeObjectVisibility('menu' + counter, 'hidden'); } } function moveObject(objectId, newXCoordinate, newYCoordinate) { // get a reference to the cross-browser style object and make sure the object exists var styleObject = getStyleObject(objectId); if(styleObject) { styleObject.left = newXCoordinate; styleObject.top = newYCoordinate; return true; } else { // we couldn't find the object, so we can't very well move it return false; } } // moveObject // *********************** // hacks and workarounds * // *********************** // initialize hacks whenever the page loads window.onload = initializeHacks; // setup an event handler to hide popups for generic clicks on the document function initializeHacks() { // this ugly little hack resizes a blank div to make sure you can click // anywhere in the window for Mac MSIE 5 if ((navigator.appVersion.indexOf('MSIE 5') != -1) && (navigator.platform.indexOf('Mac') != -1) && getStyleObject('blankDiv')) { window.onresize = explorerMacResizeFix; } resizeBlankDiv(); // this next function creates a placeholder object for older browsers createFakeEventObj(); } function createFakeEventObj() { // create a fake event object for older browsers to avoid errors in function call // when we need to pass the event object to functions if (!window.event) { window.event = false; } } // createFakeEventObj function resizeBlankDiv() { // resize blank placeholder div so IE 5 on mac will get all clicks in window if ((navigator.appVersion.indexOf('MSIE 5') != -1) && (navigator.platform.indexOf('Mac') != -1) && getStyleObject('blankDiv')) { getStyleObject('blankDiv').width = document.body.clientWidth - 20; getStyleObject('blankDiv').height = document.body.clientHeight - 20; } } function explorerMacResizeFix () { location.reload(false); } function mClk(src){ if(event.srcElement.tagName=='TD') src.children.tags('A')[0].click(); } //--> </script> <center><table width=80% bgcolor="ffffff" cellpadding="1" cellspacing="0" border="0"> <tr height="5"><td width=20%></td> <td align="left" valign="bottom" width="" height="5"> <div id="label1"><a href="company_info.html" class="MenuHeader" onMouseover="return !showMenu('1', event, 'label1'); menuOver('rollimg2');" onMouseOut = "window.status='';return true;"><img src="images/ci_active.jpg" border=0></a></div> <div id="menu1" style="width: 150px; height: 52px; position:absolute; z-index:1; visibility:hidden" onmouseover="event.cancelBubble = true;" class="Menu"> <table border="0" cellspacing="0" cellpadding="3" width="134"><tr><td bgcolor="#ffffff" width="100%"> <table border=0 cellpadding=2 cellspacing=0 width="100%"> <tr id="1a" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="company_info.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> About Us</a></td></tr> <tr id="1c" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="contact.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> Contact</a></td></tr> </table> </td></tr></table> </div> </td> <td align="left" valign="bottom" width="" height="5"> <div id="label3"><a href="mpa_products.html" class="MenuHeader" onMouseover="return !showMenu('3', event, 'label3'); menuOver('rollimg2');" onMouseOut = "window.status='';return true;"><img src="images/ps_active.jpg" border=0></a></div> <div id="menu3" style="width: 150px; height: 52px; position:absolute; z-index:1; visibility:hidden" onmouseover="event.cancelBubble = true;" class="Menu"> <table border="0" cellspacing="0" cellpadding="3" width="163"><tr><td bgcolor="#ffffff" width="100%"> <table border=0 cellpadding=2 cellspacing=0 width="100%"> <tr id="3a" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="overview.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> About the Assessments</a></td></tr> <tr id="3b" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="mpa_products.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> Product List</a></td></tr> <tr id="3c" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="workshops_descrip.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> Workshop List</a></td></tr> <tr id="3d" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="custom_form.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> Custom Quote</a></td></tr> <tr id="3e" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="download.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> Download Center</a></td></tr> <tr id="3f" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="faq_select.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> FAQ</a></td></tr> </table> </td></tr></table> </div> </td> <td align="left" valign="bottom" width="" height="5"> <div id="label4"><a href="news.html" class="MenuHeader" onMouseover="return !showMenu('4', event, 'label4'); menuOver('rollimg2');" onMouseOut = "window.status='';return true;"><img src="images/news_active.jpg" border=0></a></div> <div id="menu4" style="width: 150px; height: 52px; position:absolute; z-index:1; visibility:hidden" onmouseover="event.cancelBubble = true;" class="Menu"> <table border="0" cellspacing="0" cellpadding="3" width="145"><tr><td bgcolor="#ffffff" width="100%"> <table border=0 cellpadding=2 cellspacing=0 width="105%"> <tr id="4i" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="news.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> Announcements</a></td></tr> <tr id="4a" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="child_matters.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> Child Matters</a></td></tr> <tr id="4b" bgcolor="#ffffff"><td onMouseover="this.style.backgroundColor = '#CFD9E4';" onMouseout = "this.style.backgroundColor = '#ffffff';" width="100%" class="MenuBox"><a class="MenuItem" href="workshops.html" onMouseOut="menuOut('rollimg2');" onMouseOver="menuOver('rollimg2');"><img src="images/menu_dot.jpg" align="absmiddle" width="8" height="8" border="0"> Upcoming Workshops</a></td></tr> </table> </td></tr></table> </div> </td> <td align="left" valign="bottom" width="" height="5"> <div id="label5"><a href="contact.html" class="MenuHeader" onMouseover="return !showMenu('5', event, 'label5'); menuOver('rollimg2');" onMouseOut = "window.status='';return true;"><img src="images/contact_active.jpg" border=0></a></div> </div> </td> <td align="left" valign="bottom" width="" height="5"> <div id="label2"><a href="links.html" class="MenuHeader" onMouseover="return !showMenu('2', event, 'label2'); menuOver('rollimg2');" onMouseOut = "window.status='';return true;"><img src="images/links_active.jpg" border=0></a></div> </div> </td> <td align="left" valign="bottom" width="" height="5"> <div id="label6"><a href="/index.html" class="MenuHeader" onMouseover="return !showMenu('6', event, 'label6'); menuOver('rollimg2');" onMouseOut = "window.status='';return true;"><img src="images/home_active.jpg" border=0></a></div> </div> </td> <td width=8%></td> <td align="left" valign="middle" width="" height="> <div id="label7"><a href="/login.aspx" class="MenuHeader" onMouseover="return !showMenu('7', event, 'label7'); menuOver('rollimg2');" onMouseOut = "window.status='';return true;"><img src="images/login_active.jpg" border=0></a></div> </div> </td> </tr> </table> <!-- end drop-down menu --> <center><table width=80% border=0 bgcolor="ffffff"><tr><td width=5%></td><td><br><div align="center"><font color="#AD1517" size="3" face="Palatino">About PsyPractice Inc.</font></td><td width=5%></td></tr> <tr><td width=5%></td><td><div align="center"><font color="#0E4470" size="2" face="Palatino">PsyPractice, Inc. is a mental health testing instrument development and implementation company. Founded in 2002, PsyPractice creates and markets the Mauldin Pattern Assessment (MPA), a unique, patent-pending, web-based assessment series for any age group. PsyPractice is a forward-thinking organization lead by the psychological visionary, Dr. John Mauldin, who believes Internet technology combined with innovative testing methods will make a difference in an organization s client service.</font></td><td width=5%></td></tr> <tr><td width=5%></td><td><br><div align="center"><font color="#AD1517" size="3" face="Palatino">About Dr. John Mauldin</font></td><td width=5%></td></tr> <tr><td width=5%></td><td><div align="center"><font color="#0E4470" size="2" face="Palatino"> Dr. John Mauldin, Founder and CEO PsyPractice Inc., is a psychologist who has worked in residential, rehabilitation, business, state mental health care, and private practice. While consulting with executive management teams Dr. Mauldin recognized the potential of harnessing Internet technology as the foundation for assessment instruments. Dr. Mauldin is realizing this potential with the creation of PsyPractice Inc., a mental health assessment company and the Mauldin Pattern Assessment (MPA) Instruments Series.  John is married and has one son.</font></td><td width=5%></td></tr> <tr><td width=5%></td><td><br><div align="center"><font color="#0E4470" size="2" face="Palatino"><a href="Contact.html">Company Contact Information</a></font></td><td width=5%></td></tr> <tr><td width=5%></td><td><div align="center"><font color="#0E4470" size="2" face="Palatino"> PsyPractice Inc.<br> P.O. Box 2225<br> LaGrange, GA 30241<br><br> </font></td><td width=5%></td></tr></table> <table width=80% border=0 bgcolor="ffffff"><tr><td> <div align="left"><img src="images/email.gif" border=0> <!-- BEGIN: Constant Contact HTML for Send Page to Friend --> <A HREF="http://ccprod.roving.com/roving/sa/fp.jsp?plat=i&p=f&m=vrladxn6"> <font color="#0E4470" size="1" face="Palatino"> Send To A Friend</A></div></td></tr></table> <!-- END: Constant Contact HTML for Send Page to Friend --> <table width=80% border=0 bgcolor="ffffff"><tr bgcolor="AD1517"><td> </td></tr></table> <table width=80% border=0 bgcolor="ffffff"> <tr><td><font face="Arial, Helvetica, sans-serif" size=1 color="003366">Please review our Terms of Service and Privacy Policy<br> Copyright© 2001-2011 PsyPractice Inc. - All Rights Reserved</font><td> <div align="right"> <a href="http://psypractice.com"><img src="images/03Logo_pp.jpg" border=0></a> </div></td> </tr></table> </center> </body> </html>