function showLink(url){
var w = window.open("", "ShowLink","width=800, height=600, scrollbars=yes, resizable=yes");
var doc = w.document;
doc.open();
doc.write('<html>');
doc.write('<head>');
doc.write('<title>Links</title>');
doc.write('</head>');
doc.write('<frameset rows="95, 505">');
doc.write('<frame name="linksf1" src="resources/linksf1.html">');
doc.write('</frame>');
doc.write('<frame name="linksf2" src="'+url+'">');
doc.write('</frame>');
doc.write('</frameset>');
doc.write('</html>');
doc.close();
w.focus();
}
