var ContactTemplate = {};

ContactTemplate.MapPopUp = function(PopUpTitle, Image, sWidth, sHeight) {
    var winl = (screen.width - sWidth) / 2;
    var wint = (screen.height - sHeight) / 2;
    win3 = window.open('', 'win3', 'width=' + sWidth + ',height=' + sHeight + ',top=' + wint + ',left=' + winl + 'scrollbars=auto');

    sHeadContent = '<title>' + PopUpTitle + '</title>';
    sHead = '<head>' + sHeadContent + '</head>';

    sContent = '<img src=\"' + Image + '\" border=0>';
    sStyle = 'style=\"margin:0px; text-align:center\" ';
    sBody = '<body ' + sStyle + '>' + sContent + '</body>';

    sHtml = '<html>' + sHead + sBody + '</html>';
    win3.document.writeln(sHtml);
}

 
 
