﻿function openWin(url, width, height, hideScroll) {
	var intScrollbars = 1;
	
	if (hideScroll) intScrollbars = 0
	var wn = window.open (url,"mywindow","status=1,scrollbars=" + intScrollbars + ",toolbar=0,width="+width+",height="+height);
	wn.focus();
}