function popUp(url,h,w)
		{
			var features = "height="+h+",width="+w+",resizable=yes,scrollbars=yes";
			w = window.open(url,"pop",features);
			w.focus();
		}