');
}
else {
win.document.write('
' + '');
}
var browserName = navigator.appName;
if (browserName == "Netscape") {
win.print();
}
else {
win.location.reload();
win.print();
}
}
function doSendArticle(lang) {
window.open(lang + "/SitePages/SendArticle.aspx?url=" + location.href, 'sendFriend', 'width=370,height=500');
}
function getElementByClass(theClass) {
//Create Array of All HTML Tags
var allHTMLTags = document.getElementsByTagName("*");
//Loop through all tags using a for loop
for (i = 0; i < allHTMLTags.length; i++) {
//Get all tags with the specified class name.
if (allHTMLTags[i].className == theClass) {
//Place any code you want to apply to all
//pages with the class specified.
//In this example is to “display:none;” them
//Making them all dissapear on the page.
return allHTMLTags[i];
}
}
}
-->