// Open Popup
/*
 * PARAMETERS
 * - url (URL of the popup)
 * - name (Name of the popup)
 * - w (Width)
 * - h (Height)
 * - scrolling (no = 0 / yes = 1)
 */
function openPopup(url,name,w,h,scrolling) {
	var leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	var topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var settings = "height="+h+",width="+w+",top="+topPosition+",left="+leftPosition+",scrollbars="+scrolling+",resizable=0";
	return window.open(url,name,settings);
}

// Post poll
$(".mod-poll form").submit(function() {
	openPopup($(this).attr("action"),"popupPoll","264","349",0);
	return false;
});