﻿function PopWindow (theurl) {
    newWindow = window.open(theurl,'thisWin','toolbar=no,location=no,scrollbars=yes,resizable=yes,width=300,height=400,left=150, top=100')
}

function openWindow(url) {
    popupWin = window.open(url, 'openWin', "width=400, height=250, scrollbars=yes");
}

