/*
 * Copyright 2008, Peter Rowntree.
 * http://www.hdyn.com/mail/contact.php?addr=pr
 *
 * License: you may not use this file except in compliance with
 * the Apache License, Version 2.0, a copy of which you may obtain at
 *   http://www.apache.org/licenses/LICENSE-2.0
*/
function openYTV(_1){
var w=window.open(_1.href,"_blank","toolbar=no,directories=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=450px,height=369px");
if(w==null){
_1.target="_blank";
return true;
}
if(typeof w.focus=="fuction"){
w.focus();
}
return false;
}
function toggleSample(_3,_4){
var _5=_3.className.indexOf("stop");
if(_5<0){
_3.className+=" stop";
_3.innerHTML="STOP";
playSnd("ppSnd");
}else{
var _6=_3.className.length;
_3.className=_6>4?_3.className.substring(0,_5-1):"";
_3.innerHTML=_4;
stopSnd("ppSnd");
}
return false;
}
