
function PopConjugation( ev, verbId, infinitive )
{
	var offSetX = 0;		
	var offSetY = 0;			
	var popWinId = 'xgamesummary' +  Math.floor(Math.random()*99999)
	var popWin = new CPopWin( ev, popWinId, 550, true, offSetX, offSetY );	
	url =  '/xml/xmenu/verbconjugation.php?verbid=' + verbId;	
	popWin.Launch( 'Verb Conjugation for ' + infinitive, url );
}

function PopFlashcardConjugation( ev )
{
    var offSetX = 0;        
    var offSetY = 0;            
    var popWinId = 'xgamesummary' +  Math.floor(Math.random()*99999)
    var popWin = new CPopWin( ev, popWinId, 550, true, offSetX, offSetY );    
    url =  '/xml/xmenu/verbconjugation.php?verbid=' + verbId;    
    popWin.Launch( 'Verb Conjugation' );
}


