<!--
function openBrWindow(theURL, winName, winWidth, winHeight, features, picWidth, picHeight) { //v2.0
 //var myWin =  window.open(theURL,winName,features);
var myWin =  window.open("",winName,features);

myWin.document.writeln(' <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
myWin.document.writeln('<html><head><title>Margaret&rsquo;s Introduction</title>');
myWin.document.writeln('<link href="Style/hsa_styles.css" rel="stylesheet" type="text/css"></head>');
myWin.document.writeln('<body leftmargin="10" topmargin="10" marginwidth="0" marginheight="0">');
myWin.document.writeln('<table border="0" align="centre" cellpadding="0" cellspacing="0">');
myWin.document.writeln('<tr> ');
myWin.document.writeln('<td align="center" valign="middle">');
myWin.document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="396" height="179">');
myWin.document.writeln('<param name="movie" value="Media/Audio/margaret.swf">');
myWin.document.writeln('<param name="quality" value="high">');
myWin.document.writeln('<embed src="Media/Audio/margaret.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="396" height="179"></embed>');
myWin.document.writeln('</object>');
myWin.document.writeln('<BR><p><a href="javascript: close();">Close</a></p>');
myWin.document.writeln('</td>');
myWin.document.writeln('</tr>');
myWin.document.writeln('</table>');
myWin.document.writeln('</body>');
myWin.document.writeln('</html>');
myWin.document.close();

var value = winWidth.split("=");
var value2 = winHeight.split("=");
myWin.resizeTo(value[1], value2[1])
myWin.moveTo(0,0);
  myWin.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->