function togglelinks(id){
	var list=document.getElementById(id);
	if(list.style.display == 'block'){
	  list.style.display = 'none';
    }else{
	  list.style.display = 'block';
    }
}

function doOpen(id){
	url='calendar.php?calendar=show&id='+id;
	w=window.open(url,'Calendar_Info','width=400,height=300,resizable=no,toolbar=no,scrollbars=yes,location=no,directories=no,status=no,menubar=no,copyhistory=no');
	return w;
}

function closeWin(){
	window.close();
}

function petitionsubmit(){
    document.Form1.action = "johnson.php"    // First target
    window.open('temp.htm','johnson','width=400,height=200');
    document.Form1.target = "johnson";    // Open in a iframe
    //document.Form1.submit();        // Submit the page
    document.Form1.action = "thune.php"    // Second target
    window.open('temp.htm','thune','width=400,height=200');
    document.Form1.target = "thune";    // Open in a iframe
    //document.Form1.submit();        // Submit the page
    return true;
}