
// Open in sized window
function win(a) {
 var win1 = window.open(a,"win","height=400,width=640,scrollbars=yes,resizable=yes");
 win1.focus();
}


// Display Email Address
function email(a) {
 b = a.split("^");
 c = b[0]+"@"+b[1]+"."+b[2];
 document.write("<a h"+"r"+"ef=\"ma"+"ilt"+"o:"+c+"\">"+c+"</a>");
}
