/* piano ads javascript
--------------------------------- */

function displayWindow(url, width, height) 
{
    var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,toolbar=no' );
}

function BoxOn(row)
{
	row.style.backgroundColor="#E1E1E1";
	row.style.cursor="pointer";
}
function BoxOff(row,backc)
{
	row.style.backgroundColor=backc;
}
 






