function OpenQT(theURL, xxx, yyy) { //v2.1
//window.open(theURL, 'Preview', 'width=' + xxx + ',height=' + yyy + ',scrollbars=1');
if(xxx < 200) {
 window.open(theURL, 'Preview', 'width=' + xxx + ',height=' + yyy);
} else {
 window.open(theURL, 'Preview', 'width=' + xxx + ',height=' + yyy + ',scrollbars=1');
}
}
