﻿function DisplayChat(pageURL) {
    newWindow = window.open(pageURL, 'newWin', 'toolbar=no,width=600,height=800')
//    newWindow.document.write('<html><head><\/head><body background="' + picURL + '"><\/body><\/html>')
    newWindow.resizeBy(picWidth - newWindow.document.body.clientWidth, picHeight - newWindow.document.body.clientHeight)
    newWindow.focus()
}

