// *** Pop  - Without Scrollbars
function scrollno(page,width,height,winname) 
{ 
param="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=" + width + ",height=" + height; 
OpenWin = this.open(page,winname,param); 
} 
// ***
		
// *** Pop With Scrollbars
function scrollyes(page,width,height,winname)
{ 		param="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + width + ",height=" + height; 
OpenWin = this.open(page,winname,param); 
} 
// ***