﻿function PopWindow(url, width, height, scrollbars)
{
	chw=window.open(url,'NewWindow', 'width=' + width + ', height=' + height + ', scrollbars=' + scrollbars);
	
	if (chw != null) 
	{
		chw.focus(); 
	}
	
}

