send3.Template = function(){
    this.getForm = function(pageTitle){
    
        var s = "<table id='Send3FormTable'>"
        s += "<tr>"
        s += "<td colspan='2' class='Send3ThemeText'>"
        s += send3.lang.theme
        s += "</td>"
        s += "</tr>"
		s += "<tr>"
        s += "<td colspan='2' class='Send3ThemeText'>"
		s += send3.lang.site+": "
        s += pageTitle
        s += "</td>"
        s += "</tr>"
        s += "<tr>"
        s += "<td class='Send3SendLabel'>"
        s += send3.lang.destination_email
        s += "</td>"
        s += "<td>"
        s += "<input type='text' id='send3_destination_email' class='Send3Input1'/>"
        s += "</td>"
        s += "</tr>"
        s += "<tr>"
        s += "<td class='Send3SendLabel'>"
        s += send3.lang.correspondence
        s += "</td>"
        s += "<td>"
        s += "<textarea id='send3_correspondence' class='Send3Input2'></textarea>"
        s += "</td>"
        s += "</tr>"
		
        s += "<tr>"
        s += "<td class='Send3SendLabel'>"
        s += send3.lang.sender_name
        s += "</td>"
        s += "<td>"
        s += "<input type='text' id='send3_sender_name' class='Send3Input1'/>"
        s += "</td>"
        s += "</tr>"
        
		s += "<tr>"
        s += "<td class='Send3SendLabel'>"
        s += send3.lang.sender_email
        s += "</td>"
        s += "<td>"
        s += "<input type='text' id='send3_sender_email' class='Send3Input1'/>"
        s += "</td>"
        s += "</tr>"
		
        s += "<tr>"
        s += "<td>"
        s += "</td>"
        s += "<td>"
        s += "<input type='button' class='Send3SendButton' value='" + send3.lang.send + "' onclick='send3.instance.evSend2Click()'/>"
        s += "<input type='button' class='Send3SendButton' value='" + send3.lang.cancel + "' onclick='send3.instance.evCancelClick()'/>"
        
        s += "</td>"
        s += "</tr>"
        s += "<tr>"
        s += "<td colspan='2' id='Send3ComunicateText' >"
        s += "</td>"
        s += "</tr>"
        s += "</table>"
        
        return s
    }
}
