extBase = 'typo3conf/ext/addcon_products_view/';
extResBase = 'typo3conf/ext/addcon_products_view/res/';
extPID = 410;
extType = 357;


function getDialogLink() {
	var p = [] ;
	p[p.length] = 'eID=ajax' ;
	p[p.length] = 'L=' + activeLanguageID ;
	p[p.length] = 'q1=' + ProductGuide.answer1 ;
	p[p.length] = 'q2=' + ProductGuide.answer2 ;
	p[p.length] = 'q3=' + ProductGuide.answer3 ;
	p[p.length] = 'q4=' + ProductGuide.answer4 ;
	p[p.length] = 'q5=' + ProductGuide.answer5 ;
	p[p.length] = 'q6=' + ProductGuide.answer6 ;
	
	return 'index.php?' + p.join('&');
}

$(document).ready(function() {
	$('a[href*="id='+extPID+'"]')
    	.attr('href', getDialogLink())
    	.click(function() {
    		$.get('index.php?id='+extPID+'&L='+activeLanguageID+'&type='+extType+'', function(data) {
    			$(data).appendTo($('body'));
    			openDialog();
    		});
    		return false;    
    	});
});