function init_phong(id, won, pht){
    
    won = 65 - won * 5;
    if(won < 35)
        won = 35;
    //var pht = document.getElementById('avh_phong_table');    
    if (pht.contentWindow){
	pht.contentWindow.phong_player_id = id;
	pht.contentWindow.paddleH = won;
	pht.contentWindow.init_paddleH();
    }
    else if (pht.Document){
	pht.Document.window.phong_player_id = id;
    pht.Document.window.paddleH = won;
    pht.Document.window.init_paddleH();
    }
}	
