function qpoll_submit(v, formdata) {
	//alert(document.poll_responses.story_id.value);
	popWin('', 'popup', '770', '370', 1);
	if (v == 'save') {
		formdata.save.value = 'Cast  Vote';
	}
	formdata.submit();
}

function popWin(url, winName, w, h, scroll) {
	var sw = screen.width;
	var sh = screen.height;
	var cx = ( .5 * sw ) - ( w * .5 );
	var cy = ( .5 * sh ) - ( h * .5 );
	var values = 'toolbar=no,status=yes,menubar=no,scrollbars=' + scroll + ',resizable=yes,screenX=' + cx + ',screenY=' + cy + ',left=' + cx + ',top=' + cy + ',width=' + w + ',height=' + h + '';
	child = window.open(url, winName, values);
}
