
function showAllQ(){
document.getElementById('show').style.display = "none";
document.getElementById('hide').style.display = "inline";
document.getElementById('questionlist').style.display = "block";
}

function hideAllA(){
document.getElementById('hide').style.display = "none";
document.getElementById('show').style.display = "inline";
document.getElementById('questionlist').style.display = "none";
}

function openWindow(page,width,height){

window.open(page,"","width="+width+",height="+height+",scrollbars=yes,menu=no");


}
