function openWin(url,handle,features) {
	if (arguments.length != 3) features="resizable=yes";

	var w = window.open(url,handle,features)
};

