function fEmail(lp,rp,sclass)
{
document.write('<a href="mailto:'+lp+'@'+rp+'"');
if (sclass.length>0) document.write(' class="'+sclass+'"'); 
document.write('>'+lp+'@'+rp+'</a>');
}

function fEmail2(lp,rp,stext,sclass)
{
document.write('<a href="mailto:'+lp+'@'+rp+'"');
if (sclass.length>0) document.write(' class="'+sclass+'"'); 
document.write('>'+stext+"</a>");
}


function fOpenVac(nVacID)
{
var w;
var wx=(self.screen.width/2)-400;var wy=(self.screen.height/2)-300;
if (wy<20) wy=20; if (wx<20) wx=20;
var ws='left='+wy+','+'top='+wy+',';
w=window.open("/main/vac.php?id="+nVacID,"nw",ws+"toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=410");
w.focus();
return false;
}

