/**
 * @author aduchesneau
 */
var SONDAGE_URL = '/sondage/?lang='+langue;

function popitup(url,withAlert) {
	var wh = (screen.height) ? screen.height : 600 ;
	var ww = (screen.width) ? Math.min(screen.width,990) : 950 ;
	var wx = (screen.width) ? screen.width - ww : 0 ;

	try {
		var newwindow = window.open(url,'name','height='+wh+',width='+ww+',top=0,left='+wx+',resizable=1,scrollbars=1');
		newwindow.focus();
	}
	catch(err) {
		if (withAlert)
			prompt(language.alert_sondage_url, url);
	}
	return false;
}
		
function trace ($str) {
	if (window.console) console.log($str);
}
