// JavaScript Document for Orange Diesel

/***********Create E-mails***********/

var a,b,c,d,e,f,g,h,i

function print_info(){
 a='<a href=\"mai'
 b='info' //this variable contains the ADDRESSEE
 c='\">'
 a+='lto:'
 b+='@'
 e='</a>'
 f=''
 b+='orangediesel.com'//this variable contains the MAIL HOST
 g='<img src=\"'
 h=''
 i='\" alt="" border="0">'

 if (f) d=f
 else if (h) d=g+h+i
 else d=b

 document.write(a+b+c+d+e)
}

