
var e_mail="info"+"@"+"coteco"+"."+"com";
var AsuntoGral="mensaje web";

function SendMyMail(Asunto)
{
if ((Asunto=="")||(Asunto==null))
	{window.location="mailto:"+e_mail;}
else
	{window.location="mailto:"+e_mail+"?subject="+Asunto;}
}

function newWin(wnd,name,pos)
{
var wndOpt='height=700,width=500,scrollbars=yes,dependent=yes,alwaysRaised=yes';
var popw=open(wnd,name,wndOpt);
if (pos=="R") {popw.moveTo(window.screen.availWidth/2,0); return;}
if (pos=="L") {popw.moveTo(0,0); return;}
}
