عکس/ حضور مقام معظم رهبری در مسجد جمکران    























< type=text/Java>
// function toggleQuote(currcmt, prevcmt) {
if (document.getElementById) {
thisQuote = document.getElementById(currcmt).style;
thatQuote = document.getElementById(prevcmt).style;
if(thisQuote.display == "block") {
thisQuote.display = "none";
thatQuote.display = "block";
}else {
thisQuote.display = "block";
thatQuote.display = "none";
}
return false;
}else {
return true;
}
}
// ]]>