// PRINT CONTENT ICON 
function printContent(linkStr) 
{ 
print_url = self.location.href; 
print_url = print_url.replace(/[\?\=\&]/g, '/'); 
print_url = print_url.replace(/.htm/, ''); 
print_url = print_url + linkStr; 
window.open(print_url, null, "width=500,height=400,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes"); 
return; 
} 

// EMAIL LINK ICON 
function emailLink(linkStr) 
{ 
//window.open(linkStr + escape(self.location.href), null, "width=500,height=400,resizable=yes,scrollbars=yes"); 
window.open(linkStr + escape(self.location.href), null, "width=500,height=400,resizable=yes,scrollbars=yes"); 
return; 
}
//FEEDBACK ICON 
function feedbackLink(linkStr) 
{ 
window.open(linkStr, null, "width=500,height=450,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes"); 
return; 
} 