function showprofile(num) {	
	$('#p'+num).slideDown("slow");
	$('#p'+num+'x').hide();
//	$('#p'+num+'x').removeClass('showthis');
//	$('#p'+num+'x').addClass('hidethis');
	$('#p'+num+' .toggle-close').show();
}
function hideprofile(num) {
	$('#p'+num).slideUp("slow");
	$('#p'+num+'x').show();
//	$('#p'+num+'x').removeClass('hidethis');
//	$('#p'+num+'x').addClass('showthis');
	$('#p'+num+' .toggle-close').hide();
}

function commentpopper(polid) {
	var url = "index.php?section=multipoll&mplid="+mplid;
	document.open(url, "_blank", "scrollbars=yes, resizable=no, history=no, toolbar=no, menubars=no, width=650, height=450");	}

function multipollpopper(mplid) {
	var url = "index.php?section=multipoll&mplid="+mplid;
	document.open(url, "_blank", "scrollbars=yes, resizable=no, history=no, toolbar=no, menubars=no, width=580, height=450");
}

function clearBox(box) {
	if(box.value == box.defaultValue) {
		box.value = "";
	}
}

function resetBox(box) {
	if (box.value == "") {
		box.value = box.defaultValue;
	}
}

