var $show;

function showDiv($showID,$h)
{
//$show = $showID;
//alert($showID);
//document.getElementById($showID).height='200px';
//document.getElementById($showID).class="pop";

$msg = "<p style='height:";
$msg +=$h;
$msg +="px; ";
$msg += "overflow: hidden; width:500px; margin-left: 20px;";
$msg += "background: AliceBlue;";
$msg += " ' >";

$msg +="<span class='centBold'>Portfolio of Principles (POP)<BR></span>";
$msg += "- Focus on the goal<BR>";
$msg += "- Have a good game plan<BR>";
$msg += "- Ask good questions<BR>";
$msg += "- Use good data<BR>";
$msg += "<span class='hlight'>- Powerful Positive Practices for Peak Personal Performance (P6)</span><BR>";
$msg += "<span class='hlight'>- Be an effective executive</span><BR>";
$msg += "- Improve the process<BR>";
$msg += "- Include the customer<BR>";
$msg += "- Stay ahead<BR>";
$msg += "<span class='hlight'>- Capitalize on key considerations</span><BR>";
$msg += "<BR><a onclick=showDiv('pop',-1);>Click here to Hide the POP</a>";
$msg +="</p>"


document.getElementById($showID).innerHTML=$msg;

if(($h >0) && ($h <380))
{
$h += 30.5;
$timeMsg = "showDiv('" + $showID + "'," + $h + ")";
var t=setTimeout($timeMsg,1600);
}

if($h <0)
{

$msg = "<p style='height:30px; overflow: hidden; text-overflow: clip;  ' onclick=showDiv('pop',40);>";
$msg += "<a>Click to see my Portfolio of Principles here</a>"; 
$msg +="</p>";
document.getElementById($showID).innerHTML=$msg;
}

//var t=setTimeout("showDiv($show,$h)",1000);
}