function show_hide(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != '' ) {
		el.style.display = '';
	}
	else {
		el.style.display = 'none';
	}
}

var stile = "top=10, left=10, width=320, height=125, status=no, menubar=no, toolbar=no scrollbar=no";
function Popup(apri) {
        window.open(apri, "", stile);
     }

function VoteWindow() {
url="http://vote.sparklit.com/wait.html";
options="toolbar=no,scrollbars=yes,directories=no,status=no,menubar=no,";
options+="resizable=yes,width=500,height=400";
window.open(url,"pollwindow", options);
}