Change Link color from another jsp file
//This is my code for exit link in top frame. (title.jsp)
<a href="../TechPortal.jsp" onMouseOut="MM_swapImgRestore('t_Exit','t_Exit.gif');" onMouseOver="MM_swapImage('t_Exit','t_Exit_F2.gif');" onFocus="MM_swapImage('t_Exit','t_Exit_F2.gif')" onBlur="MM_swapImgRestore('t_Exit','t_Exit.gif');" target="MainFrame">
//This code is in frame1.jsp This is the link I need to be changed in lower frame when user clicks on Exit from title.jsp
out.println("<TR><TD><A HREF=" + PdfFile + " TARGET='_blank' + >" + linkname + "</A></TD></TR>");

