﻿var externWin;var newWin;function openPopupName(strName, strURL, intHeight, intWidth, intTop, intLeft, blnLocation, blnMenuBar, blnResizable, blnScrollbars, blnStatus, blnToolbar) {if (!externWin || externWin.closed){externWin = window.open(strURL, strName, "height=" + intHeight +  ",width=" + intWidth + ",top=" + intTop + ",left=" + intLeft + ",location=" + blnLocation + ",menubar=" + blnMenuBar + ",resizable=" + blnResizable + ",scrollbars=" + blnScrollbars + ",status=" + blnStatus + ",toolbar=" + blnToolbar);}else{externWin.location = strURL;externWin.focus();}}function print_mail_to_link(lhs, strName, rhs) {document.write("<A HREF=\"mailto");document.write(":" + lhs + "@");document.write(rhs + "\">" + strName + "<\/a>");}