function popup(url,width,height,name){
		if (width == null) width = 570;
		if (height == null) height = 560;
		if (name == null) name = "example_card";
		var props = "toolbar=no,location=no,status=no,scrollbars=no,resizable=no,titlebar=no,menubar=no,width="+width+",height="+height;
		w = window.open(url, name, props);
		if (w) {
		w.focus();
		}
}