

var e_mail="info"+"@"+"calaman"+"."+"biz";
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 showimg(scrname, h, w)
{
scrname2 = '../images/' + scrname;
var wndOpt='height='+ h +',width=' + w +',dependent=yes,alwaysRaised=yes';
var popw=open(scrname2,"image",wndOpt);
popw.resizeTo(w,h);
popw.moveTo(window.screen.availWidth/2, window.screen.availHeight/2);
}
