var popup = 0;
// uniWin opens a window with the following variables
// url, scrollbars(yes/no/auto), toolbar(yes/no), resizable(yes/no), width(pxl), height(pxl)
//<a href="JavaScript:uniWin('link.html', 'auto', 'no', 'no', 325, 350)">Click</a>
function uniWin(u, s, t, r, w, h) {
	var URL = u;
	var left="10";
	var top="10";
	var t = 'no';
	//var windowprops = "menub ar=no,copyhistory=no,location=no,menubars=yes,,toolbar=yes,scrollbars=" + s + ",resizable=" + r + ",width=" + w + ",height=" + h + ",top=" + top + ",left=" +left;
	var windowprops = "width=" + w + ",height=" + h + ",top=" + top + ",left=" +left;
	popup = window.open(URL,"cgsWin",windowprops);
	popup.focus();
}
